Skip to content

Commit

Permalink
Fixed dependency name in pom
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrien Vitti committed Oct 31, 2019
1 parent 078ce28 commit 211b72e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ publishing.publications.all
asNode().dependencies."*".findAll()
{
it.scope.text() == "runtime" && project.configurations.compile.allDependencies.find { dep ->
dep.name == it.artifactId.text()
dep.name == it.moduleArtifactId.text()
}
}.each
{
Expand Down
2 changes: 1 addition & 1 deletion remoteconfig/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ publishing.publications.all
asNode().dependencies."*".findAll()
{
it.scope.text() == "runtime" && project.configurations.compile.allDependencies.find { dep ->
dep.name == it.artifactId.text()
dep.name == it.moduleArtifactId.text()
}
}.each
{
Expand Down
2 changes: 1 addition & 1 deletion remotejson/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ publishing.publications.all
asNode().dependencies."*".findAll()
{
it.scope.text() == "runtime" && project.configurations.compile.allDependencies.find { dep ->
dep.name == it.artifactId.text()
dep.name == it.moduleArtifactId.text()
}
}.each
{
Expand Down

0 comments on commit 211b72e

Please sign in to comment.