File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
src/main/kotlin/org/utbot/contest Expand file tree Collapse file tree 2 files changed +11
-1
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
}
@@ -64,6 +68,13 @@ dependencies {
64
68
testImplementation group : ' org.mockito' , name : ' mockito-core' , version : ' 4.2.0'
65
69
testImplementation group : ' org.mockito' , name : ' mockito-inline' , version : ' 4.2.0'
66
70
testImplementation ' junit:junit:4.13.2'
71
+ fetchInstrumentationJar project(path : ' :utbot-instrumentation' , configuration :' instrumentationArchive' )
72
+ }
73
+
74
+ processResources {
75
+ from(configurations. fetchInstrumentationJar) {
76
+ into " lib"
77
+ }
67
78
}
68
79
69
80
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