-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
33 lines (27 loc) · 919 Bytes
/
build.gradle.kts
File metadata and controls
33 lines (27 loc) · 919 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
32
33
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
val sootVersion: String by rootProject
val kotlinLoggingVersion: String by rootProject
val rgxgenVersion: String by rootProject
plugins {
id("com.github.johnrengelman.shadow") version "7.1.2"
}
tasks {
withType<ShadowJar> {
archiveClassifier.set(" ")
minimize()
}
}
dependencies {
implementation(project(":utbot-framework-api"))
api(project(":utbot-fuzzing"))
implementation(group = "org.unittestbot.soot", name = "soot-utbot-fork", version = 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)
}
tasks {
compileJava {
options.compilerArgs = emptyList()
}
}