File tree Expand file tree Collapse file tree 8 files changed +7
-19
lines changed
Expand file tree Collapse file tree 8 files changed +7
-19
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,6 @@ evaluationDependsOn(':utbot-framework')
1212compileTestJava. dependsOn tasks. getByPath(' :utbot-framework:testClasses' )
1313
1414dependencies {
15- implementation(project(" :utbot-api" ))
16- implementation(project(" :utbot-core" ))
17- implementation(project(" :utbot-summary" ))
18- implementation(project(" :utbot-framework-api" ))
19- implementation(project(" :utbot-fuzzers" ))
20- implementation(project(" :utbot-instrumentation" ))
2115 implementation(project(" :utbot-framework" ))
2216 testImplementation project(' :utbot-sample' )
2317 testImplementation group : ' junit' , name : ' junit' , version : junit4_version
Original file line number Diff line number Diff line change @@ -19,9 +19,7 @@ configurations {
1919}
2020
2121dependencies {
22- implementation project(' :utbot-framework-api' )
2322 implementation project(' :utbot-framework' )
24- implementation project(' :utbot-summary' )
2523
2624 implementation group : ' org.mockito' , name : ' mockito-core' , version : mockito_version
2725 // Without this dependency testng tests do not run.
Original file line number Diff line number Diff line change @@ -14,9 +14,7 @@ configurations {
1414
1515dependencies {
1616
17- api project(' :utbot-api' )
1817 api project(' :utbot-fuzzers' )
19- api project(' :utbot-core' )
2018 api project(' :utbot-instrumentation' )
2119 api project(' :utbot-summary' )
2220 api project(' :utbot-framework-api' )
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ plugins {
55apply from : " ${ parent.projectDir} /gradle/include/jvm-project.gradle"
66
77dependencies {
8- api project(' :utbot-framework-api' )
8+ implementation project(' :utbot-framework-api' )
99 implementation " com.github.UnitTestBot:soot:${ soot_commit_hash} "
1010 implementation group : ' io.github.microutils' , name : ' kotlin-logging' , version : kotlin_logging_version
1111 implementation group : ' com.github.curious-odd-man' , name : ' rgxgen' , version : rgxgen_version
Original file line number Diff line number Diff line change 11apply from : " ${ parent.projectDir} /gradle/include/jvm-project.gradle"
22
33dependencies {
4- api project(' :utbot-framework-api' )
4+ implementation project(' :utbot-framework-api' )
55 implementation project(' :utbot-rd' )
66
77 implementation group : ' org.ow2.asm' , name : ' asm' , version : asm_version
Original file line number Diff line number Diff line change @@ -35,7 +35,6 @@ dependencies {
3535 implementation group : ' com.fasterxml.jackson.module' , name : ' jackson-module-kotlin' , version : jackson_version
3636
3737 implementation(project(" :utbot-framework" )) { exclude group : ' org.slf4j' , module : ' slf4j-api' }
38- implementation(project(" :utbot-fuzzers" ))
3938 // implementation project(':utbot-analytics') // to reduce the plugin size
4039 testImplementation ' org.mock-server:mockserver-netty:5.4.1'
4140 testImplementation(project(" :utbot-sample" ))
Original file line number Diff line number Diff line change @@ -51,8 +51,8 @@ jacocoTestReport {
5151}
5252
5353dependencies {
54- api project(" :utbot-framework" )
55- api project(" :utbot-analytics" )
54+ implementation project(" :utbot-framework" )
55+ implementation project(" :utbot-analytics" )
5656
5757 implementation " com.github.UnitTestBot:soot:${ soot_commit_hash} "
5858 implementation group : ' org.apache.commons' , name : ' commons-exec' , version : ' 1.2'
Original file line number Diff line number Diff line change @@ -2,13 +2,12 @@ apply from: "${parent.projectDir}/gradle/include/jvm-project.gradle"
22
33dependencies {
44 implementation " com.github.UnitTestBot:soot:${ soot_commit_hash} "
5- api project(' :utbot-framework-api' )
6- api(project(' :utbot-instrumentation' ))
5+ implementation project(' :utbot-framework-api' )
6+ implementation project(' :utbot-instrumentation' )
7+ implementation project(' :utbot-fuzzers' )
78
89 implementation group : ' com.github.haifengl' , name : ' smile-kotlin' , version : ' 2.6.0'
910 implementation group : ' com.github.haifengl' , name : ' smile-core' , version : ' 2.6.0'
10- api project(' :utbot-fuzzers' )
11- implementation(project(' :utbot-instrumentation' ))
1211
1312 implementation group : ' io.github.microutils' , name : ' kotlin-logging' , version : kotlin_logging_version
1413
You can’t perform that action at this time.
0 commit comments