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" }