mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-01-10 07:07:05 +07:00
30 lines
795 B
Groovy
30 lines
795 B
Groovy
|
apply plugin: "java"
|
||
|
|
||
|
sourceCompatibility = 1.7
|
||
|
sourceSets.main.java.srcDirs = [ "src/" ]
|
||
|
sourceSets.test.java.srcDirs = [ "test/" ]
|
||
|
|
||
|
project.ext.mainClassName = "com.riiablo.server.bncs.BNCS"
|
||
|
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 'Server-Class': project.mainClassName
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dist.dependsOn classes
|