Skip to content

Commit c0d78a3

Browse files
committed
Allow disabling dependency locking
Fixes: gh-7799
1 parent 93acf8f commit c0d78a3

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

gradle/dependency-management.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ if (!project.hasProperty("springDataVersion")) {
1212
if (!project.hasProperty("kotlinVersion")) {
1313
ext.kotlinVersion = "1.3.61"
1414
}
15+
if (!project.hasProperty("locksDisabled")) {
16+
dependencyLocking {
17+
lockAllConfigurations()
18+
}
19+
}
1520
ext.rsocketVersion = "1.+"
1621
ext.openSamlVersion = "3.+"
1722

@@ -141,7 +146,3 @@ configurations {
141146
}
142147
}
143148
}
144-
145-
dependencyLocking {
146-
lockAllConfigurations()
147-
}

0 commit comments

Comments
 (0)