mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-01-10 23:30:10 +07:00
29 lines
747 B
Groovy
29 lines
747 B
Groovy
apply plugin: "java"
|
|
|
|
sourceCompatibility = 1.7
|
|
sourceSets.main.java.srcDirs = [ "src/" ]
|
|
|
|
project.ext.mainClassName = "com.riiablo.tester.Tester"
|
|
project.ext.assetsDir = new File("../android/assets");
|
|
|
|
task run(dependsOn: classes, type: JavaExec) {
|
|
main = project.mainClassName
|
|
classpath = sourceSets.main.runtimeClasspath
|
|
standardInput = System.in
|
|
workingDir = project.assetsDir
|
|
ignoreExitValue = true
|
|
}
|
|
|
|
task dist(type: Jar) {
|
|
from files(sourceSets.main.output.classesDir)
|
|
from files(sourceSets.main.output.resourcesDir)
|
|
from {configurations.compile.collect {zipTree(it)}}
|
|
from files(project.assetsDir);
|
|
|
|
manifest {
|
|
attributes 'Main-Class': project.mainClassName
|
|
}
|
|
}
|
|
|
|
dist.dependsOn classes
|