1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
Description: Fix the compatibility with the version of Gradle in Debian
Origin: backport, https://github.com/bndtools/bnd/commit/72d9e5b
Bug: https://github.com/bndtools/bnd/issues/799
--- a/settings.gradle
+++ b/settings.gradle
@@ -24,7 +24,7 @@
configurations.classpath.resolutionStrategy.cacheChangingModulesFor 30, 'minutes'
dependencies {
components {
- eachComponent { ComponentMetadataDetails details ->
+ all { ComponentMetadataDetails details ->
details.changing = true
}
}
|