Skip to content

Commit

Permalink
Try to fix problem with Future not resolved after bumping to 1.9.0-Beta
Browse files Browse the repository at this point in the history
  • Loading branch information
soywiz committed May 23, 2023
1 parent e841d48 commit 2b5acef
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions buildSrc/src/main/kotlin/korlibs/modules/Publishing.kt
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,9 @@ fun Project.configurePublishing(multiplatform: Boolean = true) {
it.url.set(project.getCustomProp("project.scm.url", defaultGitUrl))
}
}
if (publication.pom.packaging == "aar") {
publication.pom.withXml {

publication.pom.withXml {
if (publication.pom.packaging == "aar") {
//println("baseProjectName=$baseProjectName")
it.asNode().apply {
val nodes: NodeList = this.getAt(QName("dependencies")).getAt("dependency").getAt("scope")
Expand Down

0 comments on commit 2b5acef

Please sign in to comment.