File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ configurations {
66}
77
88dependencies {
9- api project(' :utbot-framework-api' )
9+ implementation project(' :utbot-framework-api' )
1010 implementation project(' :utbot-framework' )
11- api project(' :utbot-summary' )
11+ implementation project(' :utbot-summary' )
1212
1313 implementation group : ' org.mockito' , name : ' mockito-core' , version : mockito_version
1414 // Without this dependency testng tests do not run.
@@ -49,10 +49,6 @@ classes {
4949}
5050
5151jar {
52- dependsOn project(' :utbot-framework' ). tasks. jar
53- dependsOn project(' :utbot-summary' ). tasks. jar
54- dependsOn project(' :utbot-fuzzers' ). tasks. jar
55-
5652 manifest {
5753 attributes ' Main-Class' : ' org.utbot.cli.ApplicationKt'
5854 attributes ' Bundle-SymbolicName' : ' org.utbot.cli'
6359
6460 archiveVersion. set(project. version as String )
6561
62+ dependsOn configurations. runtimeClasspath
6663 from {
6764 configurations. runtimeClasspath. collect { it. isDirectory() ? it : zipTree(it) }
6865 }
You can’t perform that action at this time.
0 commit comments