Skip to content

Commit

Permalink
Merge pull request #159 from rollbar/fix-android-pom-dependencies
Browse files Browse the repository at this point in the history
Fix rollbar-android dependencies to include the ones defined as implementation
  • Loading branch information
basoko authored Aug 3, 2018
2 parents 0a0cf9f + 977f7cb commit 6ff5fff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gradle/release.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ subprojects {

pom.withXml {
def dependencies = asNode().appendNode('dependencies')
configurations.compile.allDependencies.each {
configurations.api.allDependencies.each {
def dependency = dependencies.appendNode('dependency')
dependency.appendNode('groupId', GROUP)
dependency.appendNode('artifactId', it.name)
Expand Down

0 comments on commit 6ff5fff

Please sign in to comment.