Jar with dependencies, closes #82

This commit is contained in:
Emux
2016-07-19 20:15:12 +03:00
parent 440ae04a7e
commit 11f02128e6
4 changed files with 49 additions and 2 deletions

View File

@@ -62,8 +62,17 @@ task nativesJar(type: Jar) {
from('natives')
}
task fatJar(type: Jar, dependsOn: classes) {
classifier = 'jar-with-dependencies'
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
from('natives')
exclude 'META-INF/*.DSA', 'META-INF/*.RSA', 'META-INF/*.SF'
with jar
}
artifacts {
archives nativesJar
archives fatJar
}
// Automated Gradle project deployment to Sonatype OSSRH