2019-12-23 12:07:24 -07:00
|
|
|
apply plugin: "java"
|
|
|
|
|
|
|
|
sourceCompatibility = 1.7
|
|
|
|
sourceSets.main.java.srcDirs = [ "src/" ]
|
2020-01-14 05:20:43 -07:00
|
|
|
sourceSets.main.resources.srcDirs = ["../android/assets"]
|
2019-12-23 12:07:24 -07:00
|
|
|
|
|
|
|
project.ext.mainClassName = "com.me.pacman.desktop.DesktopLauncher"
|
2020-01-14 05:20:43 -07:00
|
|
|
project.ext.assetsDir = new File("../android/assets")
|
2019-12-23 12:07:24 -07:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
from {
|
|
|
|
configurations.compileClasspath.collect { it.isDirectory() ? it : zipTree(it) }
|
|
|
|
}
|
|
|
|
with jar
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
dist.dependsOn classes
|