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

View File

@ -12,6 +12,11 @@ if (!project.hasProperty("springDataVersion")) {
if (!project.hasProperty("kotlinVersion")) { if (!project.hasProperty("kotlinVersion")) {
ext.kotlinVersion = "1.3.61" ext.kotlinVersion = "1.3.61"
} }
if (!project.hasProperty("locksDisabled")) {
dependencyLocking {
lockAllConfigurations()
}
}
ext.rsocketVersion = "1.+" ext.rsocketVersion = "1.+"
ext.openSamlVersion = "3.+" ext.openSamlVersion = "3.+"
@ -141,7 +146,3 @@ configurations {
} }
} }
} }
dependencyLocking {
lockAllConfigurations()
}