ColorRunner/desktop/build.gradle

56 lines
1.6 KiB
Groovy
Raw Normal View History

2014-08-09 22:41:29 +02:00
apply plugin: "java"
2017-11-22 19:14:24 +01:00
2014-08-09 22:41:29 +02:00
sourceCompatibility = 1.6
2017-11-22 19:14:24 +01:00
sourceSets.main.java.srcDirs = [ "src/" ]
2014-08-09 22:41:29 +02:00
project.ext.mainClassName = "de.samdev.colorrunner.desktop.DesktopLauncher"
2017-11-22 19:14:24 +01:00
project.ext.assetsDir = new File("../android/assets");
2017-11-22 17:39:36 +01:00
2014-08-09 22:41:29 +02:00
task run(dependsOn: classes, type: JavaExec) {
main = project.mainClassName
classpath = sourceSets.main.runtimeClasspath
standardInput = System.in
workingDir = project.assetsDir
ignoreExitValue = true
}
2017-11-22 17:39:36 +01:00
2017-11-22 19:14:24 +01:00
task debug(dependsOn: classes, type: JavaExec) {
main = project.mainClassName
classpath = sourceSets.main.runtimeClasspath
standardInput = System.in
workingDir = project.assetsDir
ignoreExitValue = true
debug = true
}
2014-08-09 22:41:29 +02:00
task dist(type: Jar) {
from files(sourceSets.main.output.classesDir)
from files(sourceSets.main.output.resourcesDir)
2017-11-22 19:14:24 +01:00
from {configurations.compile.collect {zipTree(it)}}
2014-08-09 22:41:29 +02:00
from files(project.assetsDir);
2017-11-22 19:14:24 +01:00
2014-08-09 22:41:29 +02:00
manifest {
attributes 'Main-Class': project.mainClassName
}
}
2017-11-22 17:39:36 +01:00
2014-08-09 22:41:29 +02:00
dist.dependsOn classes
2017-11-22 19:14:24 +01:00
eclipse {
project {
name = appName + "-desktop"
linkedResource name: 'assets', type: '2', location: 'PARENT-1-PROJECT_LOC/android/assets'
}
}
task afterEclipseImport(description: "Post processing after project generation", group: "IDE") {
doLast {
def classpath = new XmlParser().parse(file(".classpath"))
new Node(classpath, "classpathentry", [ kind: 'src', path: 'assets' ]);
def writer = new FileWriter(file(".classpath"))
def printer = new XmlNodePrinter(new PrintWriter(writer))
printer.setPreserveWhitespace(true)
printer.print(classpath)
}
}