aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--JenkinsD16
-rw-r--r--README.md1
-rwxr-xr-xbuild.gradle18
3 files changed, 10 insertions, 25 deletions
diff --git a/JenkinsD b/JenkinsD
deleted file mode 100644
index 866bb1a78..000000000
--- a/JenkinsD
+++ /dev/null
@@ -1,16 +0,0 @@
-pipeline {
- agent any
- stages {
-
- stage ('Build') {
- steps {
- sh "rm -rf build/libs/"
- sh "chmod +x gradlew"
- sh "./gradlew clean --stacktrace"
- sh "./gradlew build publish --refresh-dependencies --stacktrace"
-
- archiveArtifacts artifacts: '**/build/libs/*.jar', fingerprint: true
- }
- }
- }
-} \ No newline at end of file
diff --git a/README.md b/README.md
index e46ba2607..a964627a8 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,5 @@
# Roughly Enough Items
+This is the legacy branch of REI (Version v2.x). This branch is no longer supported.
https://minecraft.curseforge.com/projects/roughly-enough-items <br>
Roughly Enough Items is a mod to view Items and Recipes for Minecraft 1.13 - 1.14, supporting mod loaders from Forge, Rift to Fabric.
diff --git a/build.gradle b/build.gradle
index 062b07ad6..57b664b72 100755
--- a/build.gradle
+++ b/build.gradle
@@ -74,14 +74,14 @@ publishing {
}
repositories {
- if (project.hasProperty('danielshe_pass')) {
- maven {
- url = "http://deploy.modmuss50.me/"
- credentials {
- username = "danielshe"
- password = project.getProperty('danielshe_pass')
- }
- }
- }
+// if (project.hasProperty('danielshe_pass')) {
+// maven {
+// url = "http://deploy.modmuss50.me/"
+// credentials {
+// username = "danielshe"
+// password = project.getProperty('danielshe_pass')
+// }
+// }
+// }
}
} \ No newline at end of file