File tree 2 files changed +11
-3
lines changed
src/main/kotlin/org/utbot/contest
2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ apply from: "${rootProject.projectDir}/gradle/include/jvm-project.gradle"
2
2
3
3
apply plugin : ' jacoco'
4
4
5
+ configurations {
6
+ fetchInstrumentationJar
7
+ }
8
+
5
9
compileJava {
6
10
options. compilerArgs << ' -XDignore.symbol.file'
7
11
}
@@ -50,8 +54,6 @@ dependencies {
50
54
api project(" :utbot-framework" )
51
55
api project(" :utbot-analytics" )
52
56
53
- api project(" :utbot-instrumentation" )
54
-
55
57
implementation " com.github.UnitTestBot:soot:${ soot_commit_hash} "
56
58
implementation group : ' org.apache.commons' , name : ' commons-exec' , version : ' 1.2'
57
59
implementation group : ' commons-io' , name : ' commons-io' , version : commons_io_version
@@ -64,6 +66,13 @@ dependencies {
64
66
testImplementation group : ' org.mockito' , name : ' mockito-core' , version : ' 4.2.0'
65
67
testImplementation group : ' org.mockito' , name : ' mockito-inline' , version : ' 4.2.0'
66
68
testImplementation ' junit:junit:4.13.2'
69
+ fetchInstrumentationJar project(path : ' :utbot-instrumentation' , configuration :' instrumentationArchive' )
70
+ }
71
+
72
+ processResources {
73
+ from(configurations. fetchInstrumentationJar) {
74
+ into " lib"
75
+ }
67
76
}
68
77
69
78
jar { dependsOn classes
Original file line number Diff line number Diff line change @@ -38,7 +38,6 @@ import org.utbot.framework.JdkPathService
38
38
import org.utbot.predictors.StateRewardPredictorFactoryImpl
39
39
import org.utbot.framework.PathSelectorType
40
40
import org.utbot.framework.UtSettings
41
- import org.utbot.predictors.NNStateRewardPredictorBase
42
41
43
42
private val logger = KotlinLogging .logger {}
44
43
You can’t perform that action at this time.
0 commit comments