diff options
| author | shedaniel <daniel@shedaniel.me> | 2024-07-20 18:39:18 +0900 |
|---|---|---|
| committer | shedaniel <daniel@shedaniel.me> | 2024-07-20 18:40:38 +0900 |
| commit | 2d7389aa03f9a6bad7b5e7b81456acb5f9d358e9 (patch) | |
| tree | 436e12342250e26296166479c33902cd8e1ff713 /build.gradle | |
| parent | deb29135ec13b735f18695deb6ffccc49a74c9db (diff) | |
| download | RoughlyEnoughItems-4.x.tar.gz RoughlyEnoughItems-4.x.tar.bz2 RoughlyEnoughItems-4.x.zip | |
Check slots before modification4.x
Diffstat (limited to 'build.gradle')
| -rwxr-xr-x | build.gradle | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/build.gradle b/build.gradle index 00c50677d..dd89ce1d1 100755 --- a/build.gradle +++ b/build.gradle @@ -1,9 +1,9 @@ plugins { - id("fabric-loom") version "0.4-SNAPSHOT" + id("fabric-loom") version "0.9-SNAPSHOT" id("maven-publish") id("java") id("java-library") - id("net.minecrell.licenser") version("0.4.1") + id("org.cadixdev.licenser") version("0.6.1") id("com.matthewprenger.cursegradle") version("1.4.0") id("net.corda.plugins.jar-filter") version("5.0.8") apply false } @@ -29,8 +29,8 @@ license { } repositories { - maven { url "https://dl.bintray.com/shedaniel/legacy-yarn-updated" } - maven { url "https://dl.bintray.com/shedaniel/shedaniel-mods" } + maven { url "https://maven.terraformersmc.com/" } + maven { url "https://maven.shedaniel.me/" } } jar { @@ -90,7 +90,7 @@ dependencies { } } } - configurations.compile.resolvedConfiguration.firstLevelModuleDependencies.each eachDep + configurations.compileClasspath.resolvedConfiguration.firstLevelModuleDependencies.each eachDep configurations.runtimeClasspath.resolvedConfiguration.firstLevelModuleDependencies.each eachDep } } @@ -214,12 +214,12 @@ publishing { } repositories { - if (project.hasProperty('danielshe_pass')) { + if (System.getenv("MAVEN_PASS") != null) { maven { - url = "http://deploy.modmuss50.me/" + url = "https://deploy.shedaniel.me/" credentials { - username = "danielshe" - password = project.getProperty('danielshe_pass') + username = "shedaniel" + password = System.getenv("MAVEN_PASS") } } } |
