16 lines
312 B
Groovy
Executable File
16 lines
312 B
Groovy
Executable File
apply plugin: "java"
|
|
|
|
sourceCompatibility = 1.7
|
|
|
|
dependencies {
|
|
compile files("lib/voxel_engine_lib.jar")
|
|
implementation files("lib/kryonet-2.21-all.jar")
|
|
}
|
|
|
|
|
|
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
|
|
|
sourceSets.main.java.srcDirs = [ "src/" ]
|
|
|
|
eclipse.project.name = appName + "-core"
|