Skip to content
This repository was archived by the owner on Mar 16, 2021. It is now read-only.

Commit 32aa234

Browse files
committed
changes to the build.gradle file regarding the pom file specification
1 parent 9812be9 commit 32aa234

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

build.gradle

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ apply plugin: 'signing'
77

88
repositories {
99
jcenter()
10-
jcenter{
11-
url 'http://oss.jfrog.org/artifactory/oss-snapshot-local'
12-
}
10+
//Commented this out, neither the SDK nor the Core libraries specify this
11+
//If this builds successfully we may want to delete this entirely
12+
//jcenter{
13+
// url 'http://oss.jfrog.org/artifactory/oss-snapshot-local'
14+
//}
1315
mavenCentral()
1416
}
1517

@@ -59,10 +61,10 @@ publishing {
5961
artifact sourceJar
6062
pom.withXml {
6163
def root = asNode()
62-
root.appendNode('name', 'Microsoft Graph SDK for Java')
63-
root.appendNode('url', 'https://github.com/microsoftgraph/msgraph-sdk-java')
64+
root.appendNode('name', 'Microsoft Graph Auth SDK for Java')
65+
root.appendNode('url', 'https://github.com/microsoftgraph/msgraph-sdk-java-auth')
6466
root.children().last() + pomConfig
65-
def pomFile = file("${project.buildDir}/libs/microsoft-graph.pom")
67+
def pomFile = file("${project.buildDir}/libs/microsoft-graph-auth.pom")
6668
writeTo(pomFile)
6769
}
6870

0 commit comments

Comments
 (0)