Final build fixes
This commit is contained in:
parent
7bf0e4f08a
commit
0dc2636046
3 changed files with 8 additions and 9 deletions
3
Jenkinsfile
vendored
3
Jenkinsfile
vendored
|
@ -5,9 +5,8 @@ node {
|
||||||
|
|
||||||
stage 'Build'
|
stage 'Build'
|
||||||
|
|
||||||
sh "rm -rf build/libs/"
|
|
||||||
sh "chmod +x gradlew"
|
sh "chmod +x gradlew"
|
||||||
sh "./gradlew build publish curseTools --refresh-dependencies --stacktrace"
|
sh "./gradlew clean build publish curseTools --refresh-dependencies --stacktrace"
|
||||||
|
|
||||||
stage "Archive artifacts"
|
stage "Archive artifacts"
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
minecraftVersion="1.13.2"
|
minecraftVersion="1.14.4"
|
||||||
name="TechReborn-1.13.2"
|
name="TechReborn-1.14.4"
|
||||||
curseID="233564"
|
curseID="233564"
|
||||||
child-project="reborncore"
|
|
||||||
child-type="requiredLibrary"
|
|
||||||
github-repo="TechReborn/TechReborn"
|
github-repo="TechReborn/TechReborn"
|
||||||
|
|
|
@ -92,14 +92,16 @@ dependencies {
|
||||||
modCompile "io.github.prospector.silk:SilkAPI:1.2.4-43"
|
modCompile "io.github.prospector.silk:SilkAPI:1.2.4-43"
|
||||||
modCompile "me.shedaniel:RoughlyEnoughItems:2.9.7+build.143"
|
modCompile "me.shedaniel:RoughlyEnoughItems:2.9.7+build.143"
|
||||||
|
|
||||||
|
def rcVersion = 'RebornCore:RebornCore-1.14.4:4.0.0.+'
|
||||||
|
|
||||||
//Hopefully this doesnt break too much eek
|
//Hopefully this doesnt break too much eek
|
||||||
if(Boolean.parseBoolean(System.getProperty("idea.sync.active", "false"))){
|
if(Boolean.parseBoolean(System.getProperty("idea.sync.active", "false"))){
|
||||||
compile 'RebornCore:RebornCore-1.14.4:4.0.0.46'
|
compile rcVersion
|
||||||
} else {
|
} else {
|
||||||
modCompile ('RebornCore:RebornCore-1.14.4:4.0.0.46')
|
modCompile (rcVersion)
|
||||||
}
|
}
|
||||||
|
|
||||||
include 'RebornCore:RebornCore-1.14.4:4.0.0.46'
|
include rcVersion
|
||||||
|
|
||||||
compileOnly "com.google.code.findbugs:jsr305:+"
|
compileOnly "com.google.code.findbugs:jsr305:+"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue