We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc69cb3 commit 2009795Copy full SHA for 2009795
gradle/maven-publish.gradle
@@ -53,6 +53,18 @@ publishing {
53
connection = POM_SCM_CONNECTION
54
developerConnection = POM_SCM_DEV_CONNECTION
55
}
56
+
57
+ //Replace this with components.release after we updated the gradle version
58
+ withXml {
59
+ def dependenciesNode = asNode().appendNode('dependencies')
60
61
+ project.configurations.implementation.allDependencies.each {
62
+ def dependencyNode = dependenciesNode.appendNode('dependency')
63
+ dependencyNode.appendNode('groupId', it.group)
64
+ dependencyNode.appendNode('artifactId', it.name)
65
+ dependencyNode.appendNode('version', it.version)
66
+ }
67
68
69
70
0 commit comments