Always refresh plugin snapshots

This commit is contained in:
Andy Wilkinson
2024-02-29 07:52:01 +00:00
parent d5083c48f4
commit 3e2518dbe1

View File

@@ -3,7 +3,10 @@ buildscript {
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
}
configurations.classpath {
resolutionStrategy.useGlobalDependencySubstitutionRules = false
resolutionStrategy {
useGlobalDependencySubstitutionRules = false
cacheChangingModulesFor(0, "seconds")
}
}
}
@@ -20,7 +23,7 @@ subprojects {
configurations {
all {
resolutionStrategy {
cacheChangingModulesFor(0, "seconds");
cacheChangingModulesFor(0, "seconds")
}
}
}