-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
20 lines (19 loc) · 1008 Bytes
/
build.gradle.kts
File metadata and controls
20 lines (19 loc) · 1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
val kotlinLoggingVersion: String by rootProject
val junit4Version: String by rootProject
val junit5Version: String by rootProject
val sootVersion: String by rootProject
val mockitoVersion: String by rootProject
dependencies {
implementation(project(":utbot-framework-api"))
implementation("org.unittestbot.soot:soot-utbot-fork:${sootVersion}") {
exclude(group="com.google.guava", module="guava")
}
implementation(project(":utbot-fuzzers"))
implementation(project(":utbot-instrumentation"))
implementation(group = "com.github.haifengl", name = "smile-kotlin", version = "2.6.0")
implementation(group = "com.github.haifengl", name = "smile-core", version = "2.6.0")
implementation(group = "io.github.microutils", name = "kotlin-logging", version = kotlinLoggingVersion)
implementation("com.github.javaparser:javaparser-core:3.22.1")
testImplementation("org.mockito:mockito-core:4.2.0")
testImplementation("org.junit.jupiter:junit-jupiter:$junit5Version")
}