2020-05-15 12:29:31 +02:00
|
|
|
apply plugin: "java"
|
|
|
|
|
|
|
|
sourceCompatibility = 1.7
|
2020-05-20 19:18:02 +02:00
|
|
|
|
2020-05-15 12:29:31 +02:00
|
|
|
dependencies {
|
2020-05-20 19:18:02 +02:00
|
|
|
implementation files('/srv/nfs/home/github/amazeing/gdx/lib/voxel_engine_lib.jar')
|
2020-05-18 17:22:13 +02:00
|
|
|
implementation files('/srv/nfs/home/github/amazeing/gdx/lib/kryonet-2.21-all.jar')
|
2020-05-15 12:29:31 +02:00
|
|
|
}
|
2020-05-20 19:18:02 +02:00
|
|
|
|
|
|
|
|
2020-05-15 12:29:31 +02:00
|
|
|
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
|
|
|
|
|
|
|
sourceSets.main.java.srcDirs = [ "src/" ]
|
|
|
|
|
|
|
|
eclipse.project.name = appName + "-core"
|