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 97b2ed5 commit ce10fe5Copy full SHA for ce10fe5
build.gradle
@@ -64,9 +64,11 @@ publishing {
64
artifact sourceJar
65
pom.withXml {
66
def root = asNode()
67
- root.appendNode('name', 'Preview Microsoft Graph SDK for Java')
+ root.appendNode('name', 'Microsoft Graph SDK for Java')
68
root.appendNode('url', 'https://github.com/microsoftgraph/msgraph-sdk-java')
69
root.children().last() + pomConfig
70
+ def pomFile = file("${project.buildDir}/libs/microsoft-graph.pom")
71
+ writeTo(pomFile)
72
}
73
74
0 commit comments