Skip to content
Snippets Groups Projects
Commit d15e5a23 authored by Sebastian Krings's avatar Sebastian Krings
Browse files

update gradle syntax

parent 8c8485b7
No related branches found
No related tags found
No related merge requests found
......@@ -90,8 +90,10 @@ jar { from sourceSets.main.allJava }
jar {
from configurations.releaseJars.collect { it.isDirectory() ? it : zipTree(it) }
}
manifest.mainAttributes("Main-Class" : 'de.tlc4b.TLC4B')
manifest.mainAttributes("Class-Path": './tla/ tlatools.jar')
manifest {
attributes "Main-Class" : 'de.tlc4b.TLC4B'
attributes "Class-Path": './tla/ tlatools.jar'
}
task tlc4b(dependsOn: build) << {
copy {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment