123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- apply plugin: "java"
- sourceCompatibility = 11
- sourceSets.main.java.srcDirs = [ "src/" ]
- sourceSets.main.resources.srcDirs = ["../core/assets"]
- project.ext.mainClassName = "de.bremen.desktop.DesktopLauncher"
- project.ext.assetsDir = new File("../core/assets")
- project.ext {
- visuiVersion = '1.4.2'
- }
- task run(dependsOn: classes, type: JavaExec) {
- main = project.mainClassName
- classpath = sourceSets.main.runtimeClasspath
- standardInput = System.in
- workingDir = project.assetsDir
- ignoreExitValue = true
- }
- task debug(dependsOn: classes, type: JavaExec) {
- main = project.mainClassName
- classpath = sourceSets.main.runtimeClasspath
- standardInput = System.in
- workingDir = project.assetsDir
- ignoreExitValue = true
- debug = true
- }
- task dist(type: Jar) {
- manifest {
- attributes 'Main-Class': project.mainClassName
- }
- dependsOn configurations.runtimeClasspath
- from {
- configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
- }
- with jar
- }
- dist.dependsOn classes
- eclipse.project.name = appName + "-desktop"
|