de1f845b71
- reorganised river stuff - improvements to TerrainHelper - fixes buildings spawning with terrain inside
22 lines
444 B
Groovy
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)
|
|
} |