File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change 1
1
apply from : " ${ parent.projectDir} /gradle/include/jvm-project.gradle"
2
2
3
+ configurations {
4
+ fetchInstrumentationJar
5
+ }
6
+
3
7
compileKotlin {
4
8
kotlinOptions {
5
9
allWarningsAsErrors = false
@@ -9,7 +13,6 @@ compileKotlin {
9
13
dependencies {
10
14
api project(" :utbot-framework" )
11
15
api project(' :utbot-summary' )
12
- api project(' :utbot-instrumentation' )
13
16
14
17
implementation group : ' org.mockito' , name : ' mockito-core' , version : mockito_version
15
18
// Without this dependency testng tests do not run.
@@ -24,6 +27,13 @@ dependencies {
24
27
compile group : ' org.apache.logging.log4j' , name : ' log4j-core' , version : log4j2_version
25
28
compile group : ' org.apache.logging.log4j' , name : ' log4j-api' , version : log4j2_version
26
29
implementation group : ' org.jacoco' , name : ' org.jacoco.report' , version : jacoco_version
30
+ fetchInstrumentationJar project(path : ' :utbot-instrumentation' , configuration :' instrumentationArchive' )
31
+ }
32
+
33
+ processResources {
34
+ from(configurations. fetchInstrumentationJar) {
35
+ into " lib"
36
+ }
27
37
}
28
38
29
39
task createProperties (dependsOn : processResources) {
57
67
58
68
duplicatesStrategy = DuplicatesStrategy . EXCLUDE
59
69
}
70
+
You can’t perform that action at this time.
0 commit comments