TerraForged/TerraForgedApp/build.gradle
dags- de1f845b71 - use fast-util long2obj maps
- reorganised river stuff
- improvements to TerrainHelper - fixes buildings spawning with terrain inside
2020-03-20 09:36:13 +00:00

22 lines
444 B
Groovy

apply plugin: "maven-publish"
apply plugin: "java"
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile "org.processing:core:3.3.7"
compile "it.unimi.dsi:fastutil:8.2.1"
compile project(":TerraForgedCore")
}
jar {
manifest { attributes "Main-Class": "com.terraforged.app.Main" }
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
}
publish {
dependsOn(jar)
}