forked from UnitTestBot/UTBotJava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.old
More file actions
33 lines (28 loc) · 1.03 KB
/
build.gradle.old
File metadata and controls
33 lines (28 loc) · 1.03 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
apply from: "${parent.projectDir}/gradle/include/jvm-project.gradle"
group 'org.utbot'
version '1.0-SNAPSHOT'
compileKotlin {
kotlinOptions {
allWarningsAsErrors = false
}
}
repositories {
mavenCentral()
}
dependencies {
api project(':utbot-fuzzers')
api project(':utbot-framework')
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
}
test {
useJUnitPlatform()
}