-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
78 lines (64 loc) · 2.09 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import org.jetbrains.changelog.Changelog
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
fun properties(key: String) = project.findProperty(key).toString()
version = properties("pluginVersion")
description = properties("pluginDescription")
plugins {
id("java")
id("org.jetbrains.intellij") version "1.17.2"
id("org.jetbrains.changelog") version "2.2.0"
id("com.github.ben-manes.versions") version "0.51.0"
}
repositories {
mavenCentral()
}
intellij {
pluginName.set(properties("pluginName"))
version.set(properties("platformVersion"))
updateSinceUntilBuild.set(false)
}
val lombokVersion = "1.18.30"
dependencies {
compileOnly("org.projectlombok:lombok:${lombokVersion}")
annotationProcessor("org.projectlombok:lombok:${lombokVersion}")
testCompileOnly("org.projectlombok:lombok:${lombokVersion}")
testAnnotationProcessor("org.projectlombok:lombok:${lombokVersion}")
testImplementation("junit:junit:4.13.2")
testImplementation("org.mockito:mockito-core:5.10.0")
}
changelog {
version.set(properties("pluginVersion"))
}
tasks {
properties("javaVersion").let {
withType<JavaCompile> {
sourceCompatibility = it
targetCompatibility = it
}
}
withType<DependencyUpdatesTask> {
rejectVersionIf {
(
listOf("RELEASE", "FINAL", "GA").any { candidate.version.uppercase().contains(it) }
||
"^[0-9,.v-]+(-r)?$".toRegex().matches(candidate.version)
).not()
}
}
patchPluginXml {
pluginDescription.set(properties("pluginDescription"))
version.set(properties("pluginVersion"))
sinceBuild.set(properties("pluginSinceBuild"))
changeNotes.set(provider {
changelog.renderItem(
changelog.getLatest(),
Changelog.OutputType.HTML
)
})
}
publishPlugin {
if (project.hasProperty("JB_PLUGIN_PUBLISH_TOKEN")) {
token.set(project.property("JB_PLUGIN_PUBLISH_TOKEN").toString())
}
}
}