diff options
-rw-r--r-- | build.gradle.kts | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index 5688298c49..29a4f8b6de 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,9 @@ buildscript { } dependencies { - classpath("com.github.GTNH2:ForgeGradle:FG_1.2-SNAPSHOT") + classpath("com.github.GTNH2:ForgeGradle:FG_1.2-SNAPSHOT"){ + isChanging = true + } } } @@ -172,6 +174,7 @@ dependencies { compile("com.github.GTNewHorizons:StructureLib:1.0.9:deobf") compile("com.github.GTNewHorizons:GT5-Unofficial:$gt5uVersion:dev"){ exclude("net.industrial-craft", "industrialcraft-2") + isChanging = true } compile("eu.usrv:YAMCore:$yamcoreVersion:deobf") @@ -198,8 +201,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 |