Skip to content
Snippets Groups Projects
Commit 4c4edcb7 authored by Sebastian Ebert's avatar Sebastian Ebert
Browse files

fatJar-task

parent 8347eee1
No related branches found
No related tags found
No related merge requests found
......@@ -149,6 +149,19 @@ jar {
}
task fatJar(type: Jar) {
dependsOn jar
group = "build"
archiveAppendix = "fatjar"
from sourceSets.main.output
from {
configurations.runtimeClasspath.collect {it.isDirectory() ? it : zipTree(it) }
}
manifest.attributes "Main-Class": "${mainClassName}"
}
// Generated files
def ecoreFile = './src/main/resources/placeTransition.ecore'
def ecoreRelastAspect = './src/gen/jastadd/pnml/placeTransition.ecore.jadd'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment