Skip to content

Commit b7f29ef

Browse files
fix: remove underscore from Gradle repo name (identity constraint)
Gradle PasswordCredentials requires the repository name to contain only letters and digits. Renames GraphDeveloperExperiences_Public to GraphDeveloperExperiencesPublic across all config files. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent dd33475 commit b7f29ef

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

.azure-pipelines/daily-ci-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ extends:
4949
gradleWrapperFile: 'gradlew'
5050
workingDirectory: '$(Build.SourcesDirectory)'
5151
tasks: 'assemble test'
52-
options: '--no-daemon -PGraphDeveloperExperiences_PublicPassword=$(ARTIFACTS_PAT)'
52+
options: '--no-daemon -PGraphDeveloperExperiencesPublicPassword=$(ARTIFACTS_PAT)'
5353
publishJUnitResults: true
5454
testResultsFiles: '**/TEST-*.xml'
5555
javaHomeOption: 'JDKVersion'

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ 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/GraphDeveloperExperiences_Public/maven/v1'
74-
name 'GraphDeveloperExperiences_Public'
73+
url 'https://microsoftgraph.pkgs.visualstudio.com/0985d294-5762-4bc2-a565-161ef349ca3e/_packaging/GraphDeveloperExperiencesPublic/maven/v1'
74+
name 'GraphDeveloperExperiencesPublic'
7575
credentials(PasswordCredentials)
7676
authentication {
7777
basic(BasicAuthentication)
@@ -128,8 +128,8 @@ publishing {
128128
url = layout.buildDirectory.dir("publishing-repository")
129129
}
130130
maven {
131-
url 'https://microsoftgraph.pkgs.visualstudio.com/0985d294-5762-4bc2-a565-161ef349ca3e/_packaging/GraphDeveloperExperiences_Public/maven/v1'
132-
name 'GraphDeveloperExperiences_Public'
131+
url 'https://microsoftgraph.pkgs.visualstudio.com/0985d294-5762-4bc2-a565-161ef349ca3e/_packaging/GraphDeveloperExperiencesPublic/maven/v1'
132+
name 'GraphDeveloperExperiencesPublic'
133133
credentials(PasswordCredentials)
134134
authentication {
135135
basic(BasicAuthentication)

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ mavenCentralSnapshotArtifactSuffix = -SNAPSHOT
3939
mavenCentralPublishingEnabled=false
4040

4141
# Azure Artifacts CFS feed credentials
42-
GraphDeveloperExperiences_PublicUsername=microsoftgraph
43-
GraphDeveloperExperiences_PublicPassword=PERSONAL_ACCESS_TOKEN
42+
GraphDeveloperExperiencesPublicUsername=microsoftgraph
43+
GraphDeveloperExperiencesPublicPassword=PERSONAL_ACCESS_TOKEN

settings.gradle

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

0 commit comments

Comments
 (0)