# HG changeset patch # User Marc Davis # Date 1675799426 18000 # Node ID 69213629de0f10d287ac309207b039205869c54a # Parent 95d4eb5bff0fe3bd6b9faf80b7353315236c3e55 update releaselock process to lock all gradle configurations. diff -r 95d4eb5bff0f -r 69213629de0f init70.gradle --- a/init70.gradle Thu Dec 22 14:39:22 2022 -0500 +++ b/init70.gradle Tue Feb 07 14:50:26 2023 -0500 @@ -274,17 +274,13 @@ assert gradle.startParameter.writeDependencyLocks : "must include --write-locks or --update-locks option when locking dependencies" } doLast { - if (!gradle.branch.isRelease()) { throw new BuildCancelledException("releaseLock is only valid on release or hotfix branch.") } - configurations.findAll { it.canBeResolved - }.findAll { c -> - def n = c.name.toLowerCase() - ['compile','runtime','provided'].any { n.contains(it) } - }.each { + } + .each { it.resolve() } }