@@ -8,21 +8,18 @@ repositories {
88
99configurations {
1010 z3native
11- fetchInstrumentationJar
1211}
1312
1413dependencies {
15- fetchInstrumentationJar project(path : ' :utbot-instrumentation' , configuration :' instrumentationArchive' )
1614
1715 api project(' :utbot-core' )
16+ api project(' :utbot-instrumentation' )
1817 api project(' :utbot-summary' )
1918 implementation ' junit:junit:4.13.1'
2019 api project(' :utbot-framework-api' )
2120
2221 implementation " com.github.UnitTestBot:soot:${ soot_commit_hash} "
2322
24- api group : ' com.google.guava' , name : ' guava' , version : guava_version
25-
2623 implementation group : ' com.fasterxml.jackson.module' , name : ' jackson-module-kotlin' , version : jackson_version
2724 implementation group : ' org.sosy-lab' , name : ' javasmt-solver-z3' , version : javasmt_solver_z3_version
2825 implementation group : ' com.github.curious-odd-man' , name : ' rgxgen' , version : rgxgen_version
@@ -33,7 +30,6 @@ dependencies {
3330 // we need this for construction mocks from composite models
3431 implementation group : ' org.mockito' , name : ' mockito-core' , version : ' 4.2.0'
3532 api project(' :utbot-api' )
36- api project(' :utbot-instrumentation' )
3733 api project(' :utbot-fuzzers' )
3834
3935 testImplementation project(' :utbot-summary' )
@@ -48,6 +44,7 @@ dependencies {
4844 testImplementation group : ' org.mockito' , name : ' mockito-core' , version : mockito_version
4945 testImplementation group : ' org.testng' , name : ' testng' , version : testng_version
5046 testImplementation group : ' org.mockito' , name : ' mockito-inline' , version : mockito_inline_version
47+ testImplementation group : ' com.google.guava' , name : ' guava' , version : guava_version
5148
5249 testCompile group : ' org.mockito' , name : ' mockito-inline' , version : mockito_inline_version
5350 testCompile group : ' org.apache.logging.log4j' , name : ' log4j-core' , version : log4j2_version
@@ -63,11 +60,6 @@ processResources {
6360 into " lib/x64"
6461 }
6562 }
66-
67- // We will extract this jar in `ChildProcessRunner` class.
68- from(configurations. fetchInstrumentationJar) {
69- into " instrumentation-lib"
70- }
7163}
7264
7365test {
0 commit comments