Skip to content
This repository has been archived by the owner on Nov 13, 2021. It is now read-only.

Commit

Permalink
Sort output
Browse files Browse the repository at this point in the history
Whenever dependencies are updated, it is quite an effort to just commit the changed checksums.
  • Loading branch information
freimair committed Nov 9, 2019
1 parent 4ca1e85 commit 3bee572
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class WitnessPlugin implements Plugin<Project> {
println "dependencyVerification {"
println " verify = ["

project.configurations.compile.resolvedConfiguration.resolvedArtifacts.each {
project.configurations.compile.resolvedConfiguration.resolvedArtifacts.toSorted{it.moduleVersion.id.group}.each {
dep ->
println " '" + dep.moduleVersion.id.group+ ":" + dep.name + ":" + calculateSha256(dep.file) + "',"
}
Expand Down

0 comments on commit 3bee572

Please sign in to comment.