Skip to content

Commit 62d449e

Browse files
author
Rustam Sadykov
committed
optimize gradle
1 parent 22ecbfc commit 62d449e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

utbot-instrumentation/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,10 @@ jar {
2525
)
2626
}
2727

28+
// we need only classes from implementation and utbot to execute child process
2829
dependsOn configurations.compileClasspath
2930
from {
30-
sourceSets.main.output + configurations.compileClasspath
31+
configurations.compileClasspath
3132
.findAll { it.isDirectory() || it.name.endsWith('jar') }
3233
.collect { it.isDirectory() ? it : zipTree(it) }
3334
}

0 commit comments

Comments
 (0)