File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7676 attributes ' Main-Class' : ' org.utbot.QualityAnalysisKt'
7777 }
7878
79+ dependsOn configurations. runtimeClasspath
7980 from {
8081 configurations. runtimeClasspath. collect { it. isDirectory() ? it : zipTree(it) }
8182 }
Original file line number Diff line number Diff line change @@ -25,10 +25,11 @@ jar {
2525 )
2626 }
2727
28+ dependsOn configurations. compileClasspath
2829 from {
29- configurations . compileClasspath . collect {
30- it . isDirectory() ? it : zipTree(it)
31- }
30+ sourceSets . main . output + configurations . compileClasspath
31+ .findAll {it . name . endsWith( ' jar ' ) }
32+ .collect { zipTree(it) }
3233 }
3334}
3435
Original file line number Diff line number Diff line change @@ -87,6 +87,7 @@ jar { dependsOn classes
8787
8888 version ' 1.0'
8989
90+ dependsOn configurations. runtimeClasspath
9091 from {
9192 sourceSets. main. output + configurations. runtimeClasspath. collect { it. isDirectory() ? it : zipTree(it) }
9293 }
@@ -109,6 +110,7 @@ task monitoringJar(type: Jar) { dependsOn classes
109110
110111 version ' 1.0'
111112
113+ dependsOn configurations. runtimeClasspath
112114 from {
113115 sourceSets. main. output + configurations. runtimeClasspath. collect { it. isDirectory() ? it : zipTree(it) }
114116 }
You can’t perform that action at this time.
0 commit comments