Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
Merge pull request #4 from str4d/master
Browse files Browse the repository at this point in the history
Fix module group accessor for resolved artifacts in calculateChecksums
  • Loading branch information
moxie0 committed Nov 19, 2014
2 parents 232f487 + c53e5d5 commit 40a3429
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class WitnessPlugin implements Plugin<Project> {

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

println " ]"
Expand Down

0 comments on commit 40a3429

Please sign in to comment.