@@ -58,13 +58,14 @@ dependencies {
5858 implementation group : ' org.apache.commons' , name : ' commons-exec' , version : ' 1.2'
5959 implementation group : ' io.github.microutils' , name : ' kotlin-logging' , version : kotlin_logging_version
6060 implementation group : ' org.jsoup' , name : ' jsoup' , version : ' 1.6.2'
61+ // need for tests
62+ implementation group : ' org.mockito' , name : ' mockito-core' , version : ' 4.2.0'
63+ implementation group : ' org.mockito' , name : ' mockito-inline' , version : ' 4.2.0'
64+ implementation ' junit:junit:4.13.2'
6165 testImplementation fileTree(dir : ' src/main/resources/projects/' , include : ' */*.jar' )
6266 testImplementation files(' src/main/resources/evosuite/evosuite-1.2.0.jar' )
6367 testImplementation files(' src/main/resources/evosuite/evosuite-standalone-runtime-1.2.0.jar' )
6468
65- testImplementation group : ' org.mockito' , name : ' mockito-core' , version : ' 4.2.0'
66- testImplementation group : ' org.mockito' , name : ' mockito-inline' , version : ' 4.2.0'
67- testImplementation ' junit:junit:4.13.2'
6869 fetchInstrumentationJar project(path : ' :utbot-instrumentation' , configuration :' instrumentationArchive' )
6970}
7071
@@ -87,7 +88,7 @@ jar { dependsOn classes
8788 version ' 1.0'
8889
8990 from {
90- configurations. runtimeClasspath. collect { it. isDirectory() ? it : zipTree(it) }
91+ sourceSets . main . output + configurations. runtimeClasspath. collect { it. isDirectory() ? it : zipTree(it) }
9192 }
9293
9394 duplicatesStrategy = DuplicatesStrategy . EXCLUDE
0 commit comments