1
0
mirror of synced 2026-05-22 21:33:16 +00:00

Allow disabling dependency locking

Fixes: gh-7799
This commit is contained in:
Eleftheria Stein
2020-01-08 21:11:00 +01:00
parent 93acf8f0f1
commit c0d78a32f1
+5 -4
View File
@@ -12,6 +12,11 @@ if (!project.hasProperty("springDataVersion")) {
if (!project.hasProperty("kotlinVersion")) {
ext.kotlinVersion = "1.3.61"
}
if (!project.hasProperty("locksDisabled")) {
dependencyLocking {
lockAllConfigurations()
}
}
ext.rsocketVersion = "1.+"
ext.openSamlVersion = "3.+"
@@ -141,7 +146,3 @@ configurations {
}
}
}
dependencyLocking {
lockAllConfigurations()
}