-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathbuild.gradle.kts
199 lines (157 loc) · 6.55 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
val intellijPluginVersion: String? by rootProject
val kotlinLoggingVersion: String? by rootProject
val apacheCommonsTextVersion: String? by rootProject
val jacksonVersion: String? by rootProject
val sootVersion: String? by rootProject
val kryoVersion: String? by rootProject
val rdVersion: String? by rootProject
val semVer: String? by rootProject
val junit5Version: String by rootProject
val junit4PlatformVersion: String by rootProject
// === IDE settings ===
val projectType: String by rootProject
val communityEdition: String by rootProject
val ultimateEdition: String by rootProject
val ideType: String by rootProject
val androidStudioPath: String? by rootProject
val ideaVersion: String? by rootProject
val pycharmVersion: String? by rootProject
val golandVersion: String? by rootProject
val javaIde: String? by rootProject
val pythonIde: String? by rootProject
val jsIde: String? by rootProject
val goIde: String? by rootProject
val ideVersion = when(ideType) {
"PC", "PY" -> pycharmVersion
"GO" -> golandVersion
else -> ideaVersion
}
val pythonCommunityPluginVersion: String? by rootProject
val pythonUltimatePluginVersion: String? by rootProject
val goPluginVersion: String? by rootProject
// https://plugins.jetbrains.com/docs/intellij/android-studio.html#configuring-the-plugin-pluginxml-file
val ideTypeOrAndroidStudio = if (androidStudioPath == null) ideType else "IC"
project.tasks.asMap["runIde"]?.enabled = false
// === IDE settings ===
plugins {
id("org.jetbrains.intellij") version "1.13.1"
}
intellij {
val androidPlugins = listOf("org.jetbrains.android")
val jvmPlugins = mutableListOf(
"java"
)
val kotlinPlugins = listOf(
"org.jetbrains.kotlin"
)
androidStudioPath?.let { jvmPlugins += androidPlugins }
val pythonCommunityPlugins = listOf(
"PythonCore:${pythonCommunityPluginVersion}"
)
val pythonUltimatePlugins = listOf(
"Pythonid:${pythonUltimatePluginVersion}"
)
val jsPlugins = listOf(
"JavaScript"
)
val goPlugins = listOf(
"org.jetbrains.plugins.go:${goPluginVersion}"
)
val mavenUtilsPlugins = listOf(
"org.jetbrains.idea.maven"
)
val basePluginSet = jvmPlugins + kotlinPlugins + mavenUtilsPlugins + androidPlugins
plugins.set(
when (projectType) {
communityEdition -> basePluginSet + pythonCommunityPlugins
ultimateEdition -> when (ideType) {
"IC" -> basePluginSet + pythonCommunityPlugins
"IU" -> basePluginSet + pythonUltimatePlugins + jsPlugins + goPlugins
"PC" -> pythonCommunityPlugins
"PY" -> pythonUltimatePlugins + jsPlugins
"GO" -> goPlugins
else -> basePluginSet
}
else -> basePluginSet
}
)
version.set(ideVersion)
type.set(ideTypeOrAndroidStudio)
}
val remoteRobotVersion = "0.11.16"
tasks {
compileKotlin {
kotlinOptions {
jvmTarget = "17"
freeCompilerArgs = freeCompilerArgs + listOf("-Xallow-result-return-type", "-Xsam-conversions=class")
allWarningsAsErrors = false
}
}
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
runIde {
jvmArgs("-Xmx2048m")
jvmArgs("--add-exports", "java.desktop/sun.awt.windows=ALL-UNNAMED")
androidStudioPath?.let { ideDir.set(file(it)) }
}
patchPluginXml {
sinceBuild.set("223")
untilBuild.set("232.*")
version.set(semVer)
}
runIdeForUiTests {
jvmArgs("-Xmx2048m", "-Didea.is.internal=true", "-Didea.ui.debug.mode=true")
systemProperty("robot-server.port", "8082") // default port 8580
systemProperty("ide.mac.message.dialogs.as.sheets", "false")
systemProperty("jb.privacy.policy.text", "<!--999.999-->")
systemProperty("jb.consents.confirmation.enabled", "false")
systemProperty("idea.trust.all.projects", "true")
systemProperty("ide.mac.file.chooser.native", "false")
systemProperty("jbScreenMenuBar.enabled", "false")
systemProperty("apple.laf.useScreenMenuBar", "false")
systemProperty("ide.show.tips.on.startup.default.value", "false")
}
downloadRobotServerPlugin {
version.set(remoteRobotVersion)
}
test {
description = "Runs UI integration tests."
useJUnitPlatform {
exclude("/org/utbot/**") //Comment this line to run the tests locally
}
}
}
repositories {
maven("https://jitpack.io")
maven("https://packages.jetbrains.team/maven/p/ij/intellij-dependencies")
}
dependencies {
implementation(group ="com.jetbrains.rd", name = "rd-framework", version = rdVersion)
implementation(group ="com.jetbrains.rd", name = "rd-core", version = rdVersion)
implementation(group ="com.esotericsoftware.kryo", name = "kryo5", version = kryoVersion)
implementation(group = "io.github.microutils", name = "kotlin-logging", version = kotlinLoggingVersion)
implementation(group = "org.apache.commons", name = "commons-text", version = apacheCommonsTextVersion)
implementation("org.apache.httpcomponents.client5:httpclient5:5.1")
implementation(group = "com.fasterxml.jackson.module", name = "jackson-module-kotlin", version = jacksonVersion)
implementation(project(":utbot-framework")) { exclude(group = "org.slf4j", module = "slf4j-api") }
implementation(project(":utbot-spring-framework")) { exclude(group = "org.slf4j", module = "slf4j-api") }
implementation(project(":utbot-java-fuzzing"))
//api(project(":utbot-analytics"))
testImplementation("org.mock-server:mockserver-netty:5.4.1")
testApi(project(":utbot-framework"))
implementation(project(":utbot-ui-commons"))
implementation(project(":utbot-android-studio"))
testImplementation("com.intellij.remoterobot:remote-robot:$remoteRobotVersion")
testImplementation("com.intellij.remoterobot:remote-fixtures:$remoteRobotVersion")
testImplementation("org.assertj:assertj-core:3.11.1")
// Logging Network Calls
testImplementation("com.squareup.okhttp3:logging-interceptor:4.10.0")
// Video Recording
implementation("com.automation-remarks:video-recorder-junit5:2.0")
testImplementation("org.junit.jupiter:junit-jupiter-api:$junit5Version")
testRuntimeOnly("org.junit.platform:junit-platform-launcher:$junit4PlatformVersion")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:$junit5Version")
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:$junit5Version")
}