forked from JetBrains/intellij-obsolete-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
49 lines (39 loc) · 907 Bytes
/
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
fun properties(key: String) = project.findProperty(key).toString()
plugins {
id("java")
id("org.jetbrains.kotlin.jvm") version "1.7.10"
id("org.jetbrains.intellij") version "1.12.0"
}
tasks {
wrapper {
gradleVersion = properties("gradleVersion")
}
}
intellij {
version.set("2020.3")
}
allprojects {
repositories {
mavenCentral()
}
}
subprojects {
apply(plugin = "org.jetbrains.intellij")
version = "203." + (System.getenv("BUILD_NUMBER").takeIf { !it.isNullOrEmpty() } ?: "0")
intellij {
version.set("2020.3")
}
tasks {
withType<JavaCompile> {
sourceCompatibility = "11"
targetCompatibility = "11"
}
patchPluginXml {
sinceBuild.set("203.1")
untilBuild.set("")
}
buildSearchableOptions {
enabled = false
}
}
}