Skip to content

Commit

Permalink
Fix publish build (#343)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnasNaouchi authored May 17, 2024
1 parent f3c8f4a commit 7a0e01f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ publishing {
description = 'Android SDK for Omise API'
url = 'https://www.omise.co'
withXml {
def dependenciesNode = asNode('').appendNode('dependencies')
def dependenciesNode = asNode().appendNode('dependencies')
configurations.implementation.allDependencies.each {
if (it.group != null && (it.name != null || "unspecified" == it.name) && it.version != null) {
def dependencyNode = dependenciesNode.appendNode('dependency')
Expand Down

0 comments on commit 7a0e01f

Please sign in to comment.