Skip to content

Commit

Permalink
Always refresh plugin snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
wilkinsona committed Feb 29, 2024
1 parent d5083c4 commit 3e2518d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
}
}

Expand All @@ -20,7 +23,7 @@ subprojects {
configurations {
all {
resolutionStrategy {
cacheChangingModulesFor(0, "seconds");
cacheChangingModulesFor(0, "seconds")
}
}
}
Expand Down

0 comments on commit 3e2518d

Please sign in to comment.