Skip to content

Commit efd5633

Browse files
fix: restore underscores in Azure Artifacts feed URLs
The Gradle repo name must be letters/digits only, but the actual feed URLs must use the real feed name with underscores. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent b7f29ef commit efd5633

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ repositories {
7070
// You can declare any Maven/Ivy/file repository here.
7171
mavenCentral()
7272
maven {
73-
url 'https://microsoftgraph.pkgs.visualstudio.com/0985d294-5762-4bc2-a565-161ef349ca3e/_packaging/GraphDeveloperExperiencesPublic/maven/v1'
73+
url 'https://microsoftgraph.pkgs.visualstudio.com/0985d294-5762-4bc2-a565-161ef349ca3e/_packaging/GraphDeveloperExperiences_Public/maven/v1'
7474
name 'GraphDeveloperExperiencesPublic'
7575
credentials(PasswordCredentials)
7676
authentication {
@@ -128,7 +128,7 @@ publishing {
128128
url = layout.buildDirectory.dir("publishing-repository")
129129
}
130130
maven {
131-
url 'https://microsoftgraph.pkgs.visualstudio.com/0985d294-5762-4bc2-a565-161ef349ca3e/_packaging/GraphDeveloperExperiencesPublic/maven/v1'
131+
url 'https://microsoftgraph.pkgs.visualstudio.com/0985d294-5762-4bc2-a565-161ef349ca3e/_packaging/GraphDeveloperExperiences_Public/maven/v1'
132132
name 'GraphDeveloperExperiencesPublic'
133133
credentials(PasswordCredentials)
134134
authentication {

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pluginManagement {
33
gradlePluginPortal()
44
mavenCentral()
55
maven {
6-
url 'https://microsoftgraph.pkgs.visualstudio.com/0985d294-5762-4bc2-a565-161ef349ca3e/_packaging/GraphDeveloperExperiencesPublic/maven/v1'
6+
url 'https://microsoftgraph.pkgs.visualstudio.com/0985d294-5762-4bc2-a565-161ef349ca3e/_packaging/GraphDeveloperExperiences_Public/maven/v1'
77
name 'GraphDeveloperExperiencesPublic'
88
credentials(PasswordCredentials)
99
authentication {

0 commit comments

Comments
 (0)