forked from UnitTestBot/UTBotJava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
31 lines (25 loc) · 771 Bytes
/
build.gradle
File metadata and controls
31 lines (25 loc) · 771 Bytes
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
apply from: "${parent.projectDir}/gradle/include/jvm-project.gradle"
group 'org.utbot'
version '1.0-SNAPSHOT'
compileKotlin {
kotlinOptions {
allWarningsAsErrors = false
}
}
repositories {
mavenCentral()
}
dependencies {
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
api project(':utbot-fuzzers')
api project(':utbot-framework-api')
api project(':utbot-framework')
api project(':utbot-fuzzers')
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation group: "io.github.danielnaczo", name: "python3parser", version: "1.0.4"
}
test {
useJUnitPlatform()
}