TerraForged/TerraForgedCore/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

31 lines
694 B
Groovy

apply plugin: "maven-publish"
repositories {
mavenCentral()
}
dependencies {
compile project(":Noise2D")
compile "it.unimi.dsi:fastutil:8.2.1"
}
publishing {
publications {
mavenJava(MavenPublication) {
artifact jar
}
}
if (System.getenv("MAVEN_USER") != null && System.getenv("MAVEN_PASS") != null) {
repositories {
maven {
credentials {
username System.getenv("MAVEN_USER")
password System.getenv("MAVEN_PASS")
}
name = "nexus"
url = "https://io.terraforged.com/repository/maven/"
}
}
}
}