diff options
author | basdxz <tudurap.com@gmail.com> | 2021-08-26 21:39:13 +0100 |
---|---|---|
committer | basdxz <tudurap.com@gmail.com> | 2021-08-26 21:39:13 +0100 |
commit | 0eb66a83720393a0ee6fda3417d122d3fbd4b6fd (patch) | |
tree | 414c2884388289d3853f8b0d6e05f87123377531 /build.gradle.kts | |
parent | 985a157f5a75cc568232a88411fdc698d54415ad (diff) | |
download | GT5-Unofficial-0eb66a83720393a0ee6fda3417d122d3fbd4b6fd.tar.gz GT5-Unofficial-0eb66a83720393a0ee6fda3417d122d3fbd4b6fd.tar.bz2 GT5-Unofficial-0eb66a83720393a0ee6fda3417d122d3fbd4b6fd.zip |
Make JitPack Deps Update Quickly
Diffstat (limited to 'build.gradle.kts')
-rw-r--r-- | build.gradle.kts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index 7ceddabf2d..bf388c9e64 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -199,8 +199,15 @@ dependencies { // exclude("com.enderio.core", "EnderCore") // exclude("mcp.mobius.waila", "Waila") //} + + configurations.all { + resolutionStrategy.cacheDynamicVersionsFor(30, "seconds") + } } + + + tasks.withType<Jar> { //Mark as outdated if versions change this.inputs.properties += "version" to project.version |