-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
78 lines (62 loc) · 2.05 KB
/
build.gradle.kts
File metadata and controls
78 lines (62 loc) · 2.05 KB
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
val intellijPluginVersion: String? by rootProject
val kotlinLoggingVersion: String? by rootProject
val junitJupiterVersion: String? by rootProject
val ideType: String? by rootProject
val ideVersion: String by rootProject
val kotlinPluginVersion: String by rootProject
val pythonCommunityPluginVersion: String? by rootProject
val pythonUltimatePluginVersion: String? by rootProject
plugins {
id("org.jetbrains.intellij") version "1.7.0"
}
project.tasks.asMap["runIde"]?.enabled = false
tasks {
compileKotlin {
kotlinOptions {
jvmTarget = "11"
freeCompilerArgs = freeCompilerArgs + listOf("-Xallow-result-return-type", "-Xsam-conversions=class")
allWarningsAsErrors = false
}
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_11
}
test {
useJUnitPlatform()
}
}
dependencies {
testImplementation(group = "org.junit.jupiter", name = "junit-jupiter-api", version = junitJupiterVersion)
testRuntimeOnly(group = "org.junit.jupiter", name = "junit-jupiter-engine", version = junitJupiterVersion)
implementation(project(":utbot-ui-commons"))
//Family
implementation(project(":utbot-python"))
}
intellij {
val androidPlugins = listOf("org.jetbrains.android")
val jvmPlugins = listOf(
"java",
"org.jetbrains.kotlin:$kotlinPluginVersion"
)
val pythonCommunityPlugins = listOf(
"PythonCore:${pythonCommunityPluginVersion}"
)
val pythonUltimatePlugins = listOf(
"Pythonid:${pythonUltimatePluginVersion}"
)
val jsPlugins = listOf(
"JavaScript"
)
plugins.set(
when (ideType) {
"IC" -> jvmPlugins + pythonCommunityPlugins + androidPlugins
"IU" -> jvmPlugins + pythonUltimatePlugins + jsPlugins + androidPlugins
"PC" -> pythonCommunityPlugins
"PY" -> pythonUltimatePlugins // something else, JS?
else -> jvmPlugins
}
)
version.set(ideVersion)
type.set(ideType)
}