File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed
src/main/kotlin/org/utbot/contest Expand file tree Collapse file tree 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"
22
33apply plugin : ' jacoco'
44
5+ configurations {
6+ fetchInstrumentationJar
7+ }
8+
59compileJava {
610 options. compilerArgs << ' -XDignore.symbol.file'
711}
@@ -50,8 +54,6 @@ dependencies {
5054 api project(" :utbot-framework" )
5155 api project(" :utbot-analytics" )
5256
53- api project(" :utbot-instrumentation" )
54-
5557 implementation " com.github.UnitTestBot:soot:${ soot_commit_hash} "
5658 implementation group : ' org.apache.commons' , name : ' commons-exec' , version : ' 1.2'
5759 implementation group : ' commons-io' , name : ' commons-io' , version : commons_io_version
@@ -64,6 +66,13 @@ dependencies {
6466 testImplementation group : ' org.mockito' , name : ' mockito-core' , version : ' 4.2.0'
6567 testImplementation group : ' org.mockito' , name : ' mockito-inline' , version : ' 4.2.0'
6668 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+ }
6776}
6877
6978jar { dependsOn classes
Original file line number Diff line number Diff line change @@ -38,7 +38,6 @@ import org.utbot.framework.JdkPathService
3838import org.utbot.predictors.StateRewardPredictorFactoryImpl
3939import org.utbot.framework.PathSelectorType
4040import org.utbot.framework.UtSettings
41- import org.utbot.predictors.NNStateRewardPredictorBase
4241
4342private val logger = KotlinLogging .logger {}
4443
You can’t perform that action at this time.
0 commit comments