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')
12
12
compileTestJava. dependsOn tasks. getByPath(' :utbot-framework:testClasses' )
13
13
14
14
dependencies {
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" ))
21
15
implementation(project(" :utbot-framework" ))
22
16
testImplementation project(' :utbot-sample' )
23
17
testImplementation group : ' junit' , name : ' junit' , version : junit4_version
Original file line number Diff line number Diff line change @@ -19,9 +19,7 @@ configurations {
19
19
}
20
20
21
21
dependencies {
22
- implementation project(' :utbot-framework-api' )
23
22
implementation project(' :utbot-framework' )
24
- implementation project(' :utbot-summary' )
25
23
26
24
implementation group : ' org.mockito' , name : ' mockito-core' , version : mockito_version
27
25
// Without this dependency testng tests do not run.
Original file line number Diff line number Diff line change @@ -14,9 +14,7 @@ configurations {
14
14
15
15
dependencies {
16
16
17
- api project(' :utbot-api' )
18
17
api project(' :utbot-fuzzers' )
19
- api project(' :utbot-core' )
20
18
api project(' :utbot-instrumentation' )
21
19
api project(' :utbot-summary' )
22
20
api project(' :utbot-framework-api' )
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ plugins {
5
5
apply from : " ${ parent.projectDir} /gradle/include/jvm-project.gradle"
6
6
7
7
dependencies {
8
- api project(' :utbot-framework-api' )
8
+ implementation project(' :utbot-framework-api' )
9
9
implementation " com.github.UnitTestBot:soot:${ soot_commit_hash} "
10
10
implementation group : ' io.github.microutils' , name : ' kotlin-logging' , version : kotlin_logging_version
11
11
implementation group : ' com.github.curious-odd-man' , name : ' rgxgen' , version : rgxgen_version
Original file line number Diff line number Diff line change 1
1
apply from : " ${ parent.projectDir} /gradle/include/jvm-project.gradle"
2
2
3
3
dependencies {
4
- api project(' :utbot-framework-api' )
4
+ implementation project(' :utbot-framework-api' )
5
5
implementation project(' :utbot-rd' )
6
6
7
7
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 {
35
35
implementation group : ' com.fasterxml.jackson.module' , name : ' jackson-module-kotlin' , version : jackson_version
36
36
37
37
implementation(project(" :utbot-framework" )) { exclude group : ' org.slf4j' , module : ' slf4j-api' }
38
- implementation(project(" :utbot-fuzzers" ))
39
38
// implementation project(':utbot-analytics') // to reduce the plugin size
40
39
testImplementation ' org.mock-server:mockserver-netty:5.4.1'
41
40
testImplementation(project(" :utbot-sample" ))
Original file line number Diff line number Diff line change @@ -51,8 +51,8 @@ jacocoTestReport {
51
51
}
52
52
53
53
dependencies {
54
- api project(" :utbot-framework" )
55
- api project(" :utbot-analytics" )
54
+ implementation project(" :utbot-framework" )
55
+ implementation project(" :utbot-analytics" )
56
56
57
57
implementation " com.github.UnitTestBot:soot:${ soot_commit_hash} "
58
58
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"
2
2
3
3
dependencies {
4
4
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' )
7
8
8
9
implementation group : ' com.github.haifengl' , name : ' smile-kotlin' , version : ' 2.6.0'
9
10
implementation group : ' com.github.haifengl' , name : ' smile-core' , version : ' 2.6.0'
10
- api project(' :utbot-fuzzers' )
11
- implementation(project(' :utbot-instrumentation' ))
12
11
13
12
implementation group : ' io.github.microutils' , name : ' kotlin-logging' , version : kotlin_logging_version
14
13
You can’t perform that action at this time.
0 commit comments