-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
39 lines (31 loc) · 1.21 KB
/
build.gradle.kts
File metadata and controls
39 lines (31 loc) · 1.21 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
34
35
36
37
38
39
val kotlinLoggingVersion: String by rootProject
val rdVersion: String by rootProject
val sootVersion: String by rootProject
val fetchSpringCommonsJar: Configuration by configurations.creating {
isCanBeResolved = true
isCanBeConsumed = false
}
val fetchSpringAnalyzerJar: Configuration by configurations.creating {
isCanBeResolved = true
isCanBeConsumed = false
}
dependencies {
implementation(project(":utbot-framework"))
implementation(project(":utbot-spring-commons-api"))
implementation(project(":utbot-spring-analyzer"))
implementation(group = "io.github.microutils", name = "kotlin-logging", version = kotlinLoggingVersion)
implementation(group = "com.jetbrains.rd", name = "rd-core", version = rdVersion)
implementation("org.unittestbot.soot:soot-utbot-fork:${sootVersion}") {
exclude(group = "com.google.guava", module = "guava")
}
fetchSpringCommonsJar(project(":utbot-spring-commons", configuration = "springCommonsJar"))
fetchSpringAnalyzerJar(project(":utbot-spring-analyzer", configuration = "springAnalyzerJar"))
}
tasks.processResources {
from(fetchSpringCommonsJar) {
into("lib")
}
from(fetchSpringAnalyzerJar) {
into("lib")
}
}