Dont use --refresh-dependencies on everybuild

This commit is contained in:
modmuss50 2020-06-28 16:29:46 +01:00
parent 4670d6813e
commit ec20d3eb93
2 changed files with 5 additions and 1 deletions

2
Jenkinsfile vendored
View file

@ -14,7 +14,7 @@ pipeline {
branch '1.16'
}
steps {
sh "./gradlew clean build publish curseTools --refresh-dependencies --stacktrace"
sh "./gradlew clean build publish curseTools --stacktrace"
archiveArtifacts artifacts: '**/build/libs/*.jar', fingerprint: true
}

View file

@ -68,6 +68,10 @@ license {
group = 'TechReborn'
configurations.all {
resolutionStrategy.cacheDynamicVersionsFor 2, 'minutes'
}
dependencies {
minecraft "com.mojang:minecraft:1.16.1"
mappings "net.fabricmc:yarn:1.16.1+build.1:v2"