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 {
6
6
}
7
7
8
8
dependencies {
9
- api project(' :utbot-framework-api' )
9
+ implementation project(' :utbot-framework-api' )
10
10
implementation project(' :utbot-framework' )
11
- api project(' :utbot-summary' )
11
+ implementation project(' :utbot-summary' )
12
12
13
13
implementation group : ' org.mockito' , name : ' mockito-core' , version : mockito_version
14
14
// Without this dependency testng tests do not run.
@@ -49,10 +49,6 @@ classes {
49
49
}
50
50
51
51
jar {
52
- dependsOn project(' :utbot-framework' ). tasks. jar
53
- dependsOn project(' :utbot-summary' ). tasks. jar
54
- dependsOn project(' :utbot-fuzzers' ). tasks. jar
55
-
56
52
manifest {
57
53
attributes ' Main-Class' : ' org.utbot.cli.ApplicationKt'
58
54
attributes ' Bundle-SymbolicName' : ' org.utbot.cli'
63
59
64
60
archiveVersion. set(project. version as String )
65
61
62
+ dependsOn configurations. runtimeClasspath
66
63
from {
67
64
configurations. runtimeClasspath. collect { it. isDirectory() ? it : zipTree(it) }
68
65
}
You can’t perform that action at this time.
0 commit comments