Remove useless file and fix albeno maven repo

This commit is contained in:
JackCarterSmith 2019-02-26 13:44:32 +01:00
parent 4624961c90
commit 5a80fd1ae3
2 changed files with 1 additions and 31 deletions

30
Jenkinsfile vendored
View File

@ -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)
}
}
}
}

View File

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