Gradle: deprecate application plugin, #46

This commit is contained in:
Emux 2016-09-12 10:27:15 +03:00
parent 50d37971b2
commit bd8cdd5d6c
2 changed files with 0 additions and 8 deletions

View File

@ -1,6 +1,5 @@
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'application'
dependencies {
compile project(':vtm-gdx')
@ -44,9 +43,6 @@ artifacts {
archives fatJar
}
mainClassName = 'org.oscim.gdx.GdxMapApp'
run { ignoreExitValue = true }
if (project.hasProperty("SONATYPE_USERNAME")) {
afterEvaluate {
project.apply from: "${rootProject.projectDir}/deploy.gradle"

View File

@ -1,5 +1,4 @@
apply plugin: 'java'
apply plugin: 'application'
dependencies {
compile project(':vtm-desktop')
@ -17,6 +16,3 @@ sourceSets {
resources.srcDirs = ['resources']
}
}
mainClassName = 'org.oscim.gdx.GdxMapApp'
run { ignoreExitValue = true }