Skip to content

Commit

Permalink
Add example for how to generate libs folder (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
kingster authored Sep 27, 2024
1 parent 52aa48a commit 3e31fc5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions examples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -117,3 +117,9 @@ applicationDistribution.into('bin') {
fileMode = 0755
}

task copyToLib(type: Copy) {
into "$buildDir/dependencies"
from configurations.runtimeClasspath
}

compileJava.dependsOn(copyToLib)

0 comments on commit 3e31fc5

Please sign in to comment.