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
17 lines (15 loc) · 756 Bytes
/
build.gradle.kts
File metadata and controls
17 lines (15 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
val sootVersion: String by rootProject
val kotlinLoggingVersion: String by rootProject
val rgxgenVersion: String by rootProject
val guavaVersion: String by rootProject
dependencies {
implementation(project(":utbot-framework-api"))
api(project(":utbot-fuzzing"))
api(project(":utbot-modificators-analyzer"))
implementation("org.unittestbot.soot:soot-utbot-fork:${sootVersion}") {
exclude(group="com.google.guava", module="guava")
}
implementation(group = "io.github.microutils", name = "kotlin-logging", version = kotlinLoggingVersion)
implementation(group = "com.github.curious-odd-man", name = "rgxgen", version = rgxgenVersion)
implementation(group = "com.google.guava", name = "guava", version = guavaVersion)
}