Skip to content
Snippets Groups Projects
Commit eb9bb590 authored by dgelessus's avatar dgelessus
Browse files

Replace another use of deprecated compile configuration

parent d2162a19
Branches
Tags
No related merge requests found
...@@ -73,7 +73,7 @@ task createJar(type: Jar, dependsOn: classes){ ...@@ -73,7 +73,7 @@ task createJar(type: Jar, dependsOn: classes){
archiveFileName = 'TLA2B.jar' archiveFileName = 'TLA2B.jar'
//from sourceSets.main.allJava //from sourceSets.main.allJava
from sourceSets.main.output from sourceSets.main.output
from {configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } } from {configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
exclude('**/*.java') exclude('**/*.java')
manifest { manifest {
attributes "Main-Class" : 'de.tla2b.TLA2B' attributes "Main-Class" : 'de.tla2b.TLA2B'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment