Refresh cache when on ci

This commit is contained in:
Matthew Messinger 2019-06-05 11:27:55 -04:00 committed by GitHub
parent 916b3b11e0
commit b9b8ba75ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,6 +32,13 @@ repositories {
}
}
// check for updates every build when on CI
if (System.env.CI) {
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
}
dependencies {
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}"
@ -140,4 +147,4 @@ publishing {
}
}
}
}
}