Dont use --refresh-dependencies on everybuild
This commit is contained in:
parent
4670d6813e
commit
ec20d3eb93
2 changed files with 5 additions and 1 deletions
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
|
@ -14,7 +14,7 @@ pipeline {
|
||||||
branch '1.16'
|
branch '1.16'
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
sh "./gradlew clean build publish curseTools --refresh-dependencies --stacktrace"
|
sh "./gradlew clean build publish curseTools --stacktrace"
|
||||||
|
|
||||||
archiveArtifacts artifacts: '**/build/libs/*.jar', fingerprint: true
|
archiveArtifacts artifacts: '**/build/libs/*.jar', fingerprint: true
|
||||||
}
|
}
|
||||||
|
|
|
@ -68,6 +68,10 @@ license {
|
||||||
|
|
||||||
group = 'TechReborn'
|
group = 'TechReborn'
|
||||||
|
|
||||||
|
configurations.all {
|
||||||
|
resolutionStrategy.cacheDynamicVersionsFor 2, 'minutes'
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
minecraft "com.mojang:minecraft:1.16.1"
|
minecraft "com.mojang:minecraft:1.16.1"
|
||||||
mappings "net.fabricmc:yarn:1.16.1+build.1:v2"
|
mappings "net.fabricmc:yarn:1.16.1+build.1:v2"
|
||||||
|
|
Loading…
Reference in a new issue