forked from UnitTestBot/UTBotJava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
44 lines (41 loc) · 1.93 KB
/
build.gradle.kts
File metadata and controls
44 lines (41 loc) · 1.93 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
val sootCommitHash:String by rootProject
val intellijPluginVersion: String? by rootProject
val kotlinLoggingVersion: String? by rootProject
val apacheCommonsTextVersion: String? by rootProject
val jacksonVersion: String? by rootProject
val ideType: String? by rootProject
val pythonCommunityPluginVersion: String? by rootProject
val pythonUltimatePluginVersion: String? by rootProject
tasks {
compileKotlin {
kotlinOptions {
jvmTarget = "11"
freeCompilerArgs = freeCompilerArgs + listOf("-Xallow-result-return-type", "-Xsam-conversions=class")
allWarningsAsErrors = false
}
}
test {
useJUnitPlatform()
}
}
dependencies {
api(project(":utbot-fuzzers"))
api(project(":utbot-framework"))
api(project(":utbot-python-parser"))
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.1")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
implementation(group = "org.apache.commons", name = "commons-lang3", version = "3.12.0")
implementation(group = "io.github.danielnaczo", name = "python3parser", version = "1.0.4")
implementation(group = "commons-io", name = "commons-io", version = "2.11.0")
implementation("com.beust:klaxon:5.5")
implementation("com.squareup.moshi:moshi:1.11.0")
implementation("com.squareup.moshi:moshi-kotlin:1.11.0")
implementation("com.squareup.moshi:moshi-adapters:1.11.0")
implementation(group = "io.github.microutils", name = "kotlin-logging", version = kotlinLoggingVersion)
implementation("org.functionaljava:functionaljava:5.0")
implementation("org.functionaljava:functionaljava-quickcheck:5.0")
implementation("org.functionaljava:functionaljava-java-core:5.0")
implementation(group = "org.apache.commons", name = "commons-text", version = apacheCommonsTextVersion)
implementation ("com.github.UnitTestBot:soot:${sootCommitHash}")
implementation("org.jgrapht:jgrapht-core:1.5.1")
}