From 5a80fd1ae3ba1b40a0d6d9965f76e9be2115c8eb Mon Sep 17 00:00:00 2001 From: JackCarterSmith Date: Tue, 26 Feb 2019 13:44:32 +0100 Subject: [PATCH] Remove useless file and fix albeno maven repo --- Jenkinsfile | 30 ------------------------------ build.gradle | 2 +- 2 files changed, 1 insertion(+), 31 deletions(-) delete mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index 12839ac..0000000 --- a/Jenkinsfile +++ /dev/null @@ -1,30 +0,0 @@ -pipeline { - agent { - docker { - image 'jackcartersmith/gradle_mc:stable' - args '-v /var/lib/jenkins/.gradle:/root/.gradle' - } - - } - stages { - stage('Setup') { - steps { - sh 'chmod +x gradlew' - sh './gradlew setupCIWorkspace' - } - } - stage('Compile') { - steps { - sh './gradlew clean' - sh './gradlew check' - sh './gradlew build' - } - } - stage('JAR release') { - steps { - archiveArtifacts(artifacts: 'build/libs/OrbitalSatellite-*.jar', excludes: 'build/libs/OrbitalSatellite-*-sources.jar') - cleanWs(cleanWhenAborted: true, cleanWhenFailure: true, cleanWhenNotBuilt: true, cleanWhenSuccess: true, cleanWhenUnstable: true, cleanupMatrixParent: true, deleteDirs: true) - } - } - } -} \ No newline at end of file diff --git a/build.gradle b/build.gradle index da98ac3..b1a9480 100644 --- a/build.gradle +++ b/build.gradle @@ -98,7 +98,7 @@ dependencies { compileOnly "mcp.mobius.waila:Hwyla:1.8.20-B35_1.12" compileOnly 'industrial-craft:industrialcraft-2:release:ex112'//'net.industrial-craft:industrialcraft-2:2.8.+' compileOnly 'baubles:Baubles:1.12:1.5.2' - deobfCompile 'elucent:albedo:2.0-SNAPSHOT' + deobfCompile "albedo:albedo:0.1.3" }