de1f845b71
- reorganised river stuff - improvements to TerrainHelper - fixes buildings spawning with terrain inside
31 lines
694 B
Groovy
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/"
|
|
}
|
|
}
|
|
}
|
|
} |