gotoOla
01/04/2019, 12:37 PMgotoOla
01/04/2019, 3:55 PM...
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'java'
apply plugin: 'kotlin'
tasks.build.dependsOn tasks.shadowJar
shadowJar {
baseName = 'app'
classifier = null
version = null
manifest {
attributes 'Main-Class': 'se.olapetersson.MainKt'
}
}
...
You had to add the tasks.builds.dependsOn but I got rid of quite a few tasks from the application (and distribution) plugin