chg: get rid of main task

This commit is contained in:
Tobi Schäfer 2020-03-15 12:19:38 +01:00
parent f7e52dbad5
commit 36b5ae6279

View file

@ -1,7 +1,8 @@
apply plugin: 'java'
defaultTasks 'main'
defaultTasks 'jar'
ant.importBuild 'build.xml'
tasks.jar.dependsOn 'mkjar'
repositories {
jcenter()
@ -27,7 +28,3 @@ task deps(type: Copy) {
from configurations.compile
into 'lib/'
}
task main(dependsOn: 'mkjar') {
}