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

@@ -4,7 +4,6 @@ apply plugin: 'application'
dependencies {
compile project(':vtm-gdx')
compile project(':vtm-themes')
compile files('natives')
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
compile "com.badlogicgames.gdx:gdx-backend-jglfw:$gdxVersion"
@@ -23,8 +22,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
}
mainClassName = 'org.oscim.gdx.GdxMapApp'