Add Gradle Lock Plugin

This commit is contained in:
Joe Grandja
2020-08-19 16:31:01 -04:00
parent e16f15cce3
commit a401392bac
5 changed files with 77 additions and 0 deletions

View File

@@ -10,6 +10,12 @@ if (!project.hasProperty("reactorVersion")) {
ext.reactorVersion = "Dysprosium-SR+"
}
if (!project.hasProperty("locksDisabled")) {
dependencyLocking {
lockAllConfigurations()
}
}
dependencyManagement {
imports {
mavenBom "org.springframework:spring-framework-bom:$springVersion"