Skip to content

Commit 3e31fc5

Browse files
authored
Add example for how to generate libs folder (#110)
1 parent 52aa48a commit 3e31fc5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

examples/build.gradle

+6
Original file line numberDiff line numberDiff line change
@@ -117,3 +117,9 @@ applicationDistribution.into('bin') {
117117
fileMode = 0755
118118
}
119119

120+
task copyToLib(type: Copy) {
121+
into "$buildDir/dependencies"
122+
from configurations.runtimeClasspath
123+
}
124+
125+
compileJava.dependsOn(copyToLib)

0 commit comments

Comments
 (0)