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

update gradle syntax

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