-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathbuild.gradle
More file actions
21 lines (18 loc) · 793 Bytes
/
build.gradle
File metadata and controls
21 lines (18 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
configurations {
fetchInstrumentationJar
}
dependencies {
fetchInstrumentationJar project(path: ':utbot-instrumentation', configuration: 'instrumentationArchive')
implementation project(':utbot-framework-api')
testImplementation configurations.fetchInstrumentationJar
testImplementation project(':utbot-sample')
testImplementation group: 'org.jacoco', name: 'org.jacoco.report', version: jacocoVersion
implementation group: 'com.jetbrains.rd', name: 'rd-framework', version: rdFrameworkVersion
implementation group: 'com.jetbrains.rd', name: 'rd-core', version: rdFrameworkVersion
}
processResources {
// We will extract this jar in `ChildProcessRunner` class.
from(configurations.fetchInstrumentationJar) {
into "instrumentation-lib"
}
}