From 238765e38674ada5dec40781fb89d1e870ea8556 Mon Sep 17 00:00:00 2001 From: ray chen Date: Tue, 3 Feb 2026 23:54:43 +0000 Subject: [PATCH 01/19] Updated parent pom file to use internal azure artifact feed --- .../azure-client-sdk-parent-v2/pom.xml | 28 +++++-------------- sdk/parents/azure-client-sdk-parent/pom.xml | 28 +++++-------------- sdk/parents/azure-sdk-parent/pom.xml | 28 ++----------------- sdk/parents/clientcore-parent/pom.xml | 28 +++++-------------- 4 files changed, 24 insertions(+), 88 deletions(-) diff --git a/sdk/parents/azure-client-sdk-parent-v2/pom.xml b/sdk/parents/azure-client-sdk-parent-v2/pom.xml index a8ee8c08ff77..ba5cdb87572c 100644 --- a/sdk/parents/azure-client-sdk-parent-v2/pom.xml +++ b/sdk/parents/azure-client-sdk-parent-v2/pom.xml @@ -42,37 +42,23 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + azure-sdk-for-java + Azure SDK for Java + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 azure-java-build-docs diff --git a/sdk/parents/azure-client-sdk-parent/pom.xml b/sdk/parents/azure-client-sdk-parent/pom.xml index 680523d726fd..ee3831387137 100644 --- a/sdk/parents/azure-client-sdk-parent/pom.xml +++ b/sdk/parents/azure-client-sdk-parent/pom.xml @@ -42,37 +42,23 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + azure-sdk-for-java + Azure SDK for Java + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 azure-java-build-docs diff --git a/sdk/parents/azure-sdk-parent/pom.xml b/sdk/parents/azure-sdk-parent/pom.xml index 680717e4f2bd..196ff7d51991 100644 --- a/sdk/parents/azure-sdk-parent/pom.xml +++ b/sdk/parents/azure-sdk-parent/pom.xml @@ -34,37 +34,15 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - - - - azure-sdk-for-java + central https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - true - - - true - - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 diff --git a/sdk/parents/clientcore-parent/pom.xml b/sdk/parents/clientcore-parent/pom.xml index 333fe1c6d6aa..9a13498c1967 100644 --- a/sdk/parents/clientcore-parent/pom.xml +++ b/sdk/parents/clientcore-parent/pom.xml @@ -31,37 +31,23 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + azure-sdk-for-java + Azure SDK for Java + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 azure-java-build-docs From 527b6af37183a5fc1d92a052393a96c0806ba24d Mon Sep 17 00:00:00 2001 From: ray chen Date: Wed, 4 Feb 2026 00:14:16 +0000 Subject: [PATCH 02/19] Added auth task --- eng/pipelines/templates/jobs/ci.yml | 2 ++ .../templates/steps/maven-authenticate.yml | 14 ++++++++++++++ eng/settings.xml | 5 +++++ 3 files changed, 21 insertions(+) create mode 100644 eng/pipelines/templates/steps/maven-authenticate.yml diff --git a/eng/pipelines/templates/jobs/ci.yml b/eng/pipelines/templates/jobs/ci.yml index 6af7b0c042c0..1556df348c7b 100644 --- a/eng/pipelines/templates/jobs/ci.yml +++ b/eng/pipelines/templates/jobs/ci.yml @@ -199,6 +199,8 @@ jobs: python -m pip install markdown2==2.4.6 BeautifulSoup4==4.11.1 displayName: 'pip install markdown2 and BeautifulSoup4' + - template: /eng/pipelines/templates/steps/maven-authenticate.yml + - task: Maven@4 displayName: 'Build and Package, JDK Version: ${{ parameters.JavaBuildVersion }}' inputs: diff --git a/eng/pipelines/templates/steps/maven-authenticate.yml b/eng/pipelines/templates/steps/maven-authenticate.yml new file mode 100644 index 000000000000..748429f1db3b --- /dev/null +++ b/eng/pipelines/templates/steps/maven-authenticate.yml @@ -0,0 +1,14 @@ +# Template for authenticating with Azure Artifacts Maven feeds +# This should be included before any Maven task that needs to download dependencies +# from the central Azure Artifacts feed. + +parameters: + - name: ArtifactsFeeds + type: string + default: 'central' + +steps: + - task: MavenAuthenticate@0 + displayName: 'Authenticate with Azure Artifacts' + inputs: + artifactsFeeds: ${{ parameters.ArtifactsFeeds }} diff --git a/eng/settings.xml b/eng/settings.xml index b1b7cb0d1d0d..9b077aceed3b 100644 --- a/eng/settings.xml +++ b/eng/settings.xml @@ -1,4 +1,9 @@ + + central + AzureDevOps + ${env.SYSTEM_ACCESSTOKEN} + From 437a9f9464757781a7056ccec18026d3bb43fc0c Mon Sep 17 00:00:00 2001 From: ray chen Date: Wed, 4 Feb 2026 00:15:40 +0000 Subject: [PATCH 03/19] Added auth task to more pipeline files --- eng/pipelines/aggregate-reports.yml | 2 ++ eng/pipelines/code-quality-reports.yml | 2 ++ eng/pipelines/templates/jobs/build-validate-pom.yml | 2 ++ eng/pipelines/templates/stages/archetype-sdk-client-patch.yml | 2 ++ eng/pipelines/templates/steps/build-and-test-native.yml | 2 ++ eng/pipelines/templates/steps/build-and-test.yml | 2 ++ eng/pipelines/templates/steps/run-and-validate-linting.yml | 2 ++ 7 files changed, 14 insertions(+) diff --git a/eng/pipelines/aggregate-reports.yml b/eng/pipelines/aggregate-reports.yml index 371c5fa33177..86b748e6c13d 100644 --- a/eng/pipelines/aggregate-reports.yml +++ b/eng/pipelines/aggregate-reports.yml @@ -43,6 +43,8 @@ extends: parameters: JobType: 'Reporting' + - template: /eng/pipelines/templates/steps/maven-authenticate.yml + # TODO (vcolin7): Evaluate if we can avoid separating the Cosmos Spark connectors and Java 7 libraries from the rest for this. See: https://github.com/Azure/azure-sdk-for-java/issues/38283. - task: Maven@4 displayName: 'Build all libraries that support Java $(JavaBuildVersion)' diff --git a/eng/pipelines/code-quality-reports.yml b/eng/pipelines/code-quality-reports.yml index b770b633043f..6e482fa806b9 100644 --- a/eng/pipelines/code-quality-reports.yml +++ b/eng/pipelines/code-quality-reports.yml @@ -89,6 +89,8 @@ extends: pwsh: true displayName: 'Generate Linting Commands' + - template: /eng/pipelines/templates/steps/maven-authenticate.yml + - task: Maven@4 displayName: 'Build and Run Linting' inputs: diff --git a/eng/pipelines/templates/jobs/build-validate-pom.yml b/eng/pipelines/templates/jobs/build-validate-pom.yml index ebda5aea292d..79d02ad1dfef 100644 --- a/eng/pipelines/templates/jobs/build-validate-pom.yml +++ b/eng/pipelines/templates/jobs/build-validate-pom.yml @@ -52,6 +52,8 @@ jobs: parameters: JobType: 'Build and Validate' + - template: /eng/pipelines/templates/steps/maven-authenticate.yml + - ${{ each artifact in parameters.Artifacts }}: - task: Maven@4 displayName: 'Prepare POM: ${{artifact.groupId}}:${{artifact.name}}' diff --git a/eng/pipelines/templates/stages/archetype-sdk-client-patch.yml b/eng/pipelines/templates/stages/archetype-sdk-client-patch.yml index d22601358369..ff073bf41b9c 100644 --- a/eng/pipelines/templates/stages/archetype-sdk-client-patch.yml +++ b/eng/pipelines/templates/stages/archetype-sdk-client-patch.yml @@ -124,6 +124,8 @@ extends: PackagePropertiesFolder: $(Build.ArtifactStagingDirectory)/PackageInfo ForRelease: true + - template: /eng/pipelines/templates/steps/maven-authenticate.yml + - task: Maven@4 displayName: 'Build From Source and Package, JDK Version: ${{ parameters.JavaBuildVersion }}' inputs: diff --git a/eng/pipelines/templates/steps/build-and-test-native.yml b/eng/pipelines/templates/steps/build-and-test-native.yml index 0f54ebd562fd..322bc1b066c6 100644 --- a/eng/pipelines/templates/steps/build-and-test-native.yml +++ b/eng/pipelines/templates/steps/build-and-test-native.yml @@ -31,6 +31,8 @@ parameters: default: 'com.azure.resourcemanager:azure-resourcemanager-samples' steps: + - template: /eng/pipelines/templates/steps/maven-authenticate.yml + - task: Maven@4 displayName: 'Build for non-From Source run' inputs: diff --git a/eng/pipelines/templates/steps/build-and-test.yml b/eng/pipelines/templates/steps/build-and-test.yml index e8a39bb29072..733427e5490a 100644 --- a/eng/pipelines/templates/steps/build-and-test.yml +++ b/eng/pipelines/templates/steps/build-and-test.yml @@ -46,6 +46,8 @@ parameters: default: [ ] steps: + - template: /eng/pipelines/templates/steps/maven-authenticate.yml + - task: Maven@4 ${{ if eq(parameters.TestVersionSupport, 'true') }}: displayName: '${{ parameters.VersionOverride }} - Build for non-From Source run' diff --git a/eng/pipelines/templates/steps/run-and-validate-linting.yml b/eng/pipelines/templates/steps/run-and-validate-linting.yml index 30b219a8901c..e351a793fd9d 100644 --- a/eng/pipelines/templates/steps/run-and-validate-linting.yml +++ b/eng/pipelines/templates/steps/run-and-validate-linting.yml @@ -20,6 +20,8 @@ parameters: steps: # maven dependency:tree needs to be able to resolve dependencies, so these should be installed. + - template: /eng/pipelines/templates/steps/maven-authenticate.yml + - task: Maven@4 ${{ if ne(parameters.SDKType, 'client') }}: displayName: 'Build and Run SpotBugs and Checkstyle' From e17a9d46b4b62e6579cebd1d7a168395b7a1af8a Mon Sep 17 00:00:00 2001 From: ray chen Date: Wed, 4 Feb 2026 18:02:03 +0000 Subject: [PATCH 04/19] Added access token variable --- eng/pipelines/aggregate-reports.yml | 2 ++ eng/pipelines/code-quality-reports.yml | 2 ++ eng/pipelines/templates/jobs/build-validate-pom.yml | 3 +++ eng/pipelines/templates/jobs/ci.tests.yml | 2 ++ eng/pipelines/templates/jobs/ci.versions.tests.yml | 2 ++ eng/pipelines/templates/jobs/ci.yml | 4 ++++ eng/pipelines/templates/jobs/live.tests.yml | 2 ++ eng/pipelines/templates/jobs/native.live.tests.yml | 2 ++ .../templates/stages/archetype-sdk-client-patch.yml | 2 ++ eng/pipelines/templates/steps/maven-authenticate.yml | 6 ++++++ eng/settings.xml | 12 +++++++----- 11 files changed, 34 insertions(+), 5 deletions(-) diff --git a/eng/pipelines/aggregate-reports.yml b/eng/pipelines/aggregate-reports.yml index 86b748e6c13d..dc85f2437a7e 100644 --- a/eng/pipelines/aggregate-reports.yml +++ b/eng/pipelines/aggregate-reports.yml @@ -32,6 +32,8 @@ extends: variables: - template: /eng/pipelines/templates/variables/image.yml + - name: SYSTEM_ACCESSTOKEN + value: $(System.AccessToken) - name: ArtifactsJson value: '${{ convertToJson(parameters.Artifacts) }}' pool: diff --git a/eng/pipelines/code-quality-reports.yml b/eng/pipelines/code-quality-reports.yml index 6e482fa806b9..89dd76ea1ed3 100644 --- a/eng/pipelines/code-quality-reports.yml +++ b/eng/pipelines/code-quality-reports.yml @@ -22,6 +22,8 @@ extends: variables: - template: /eng/pipelines/templates/variables/globals.yml - template: /eng/pipelines/templates/variables/image.yml + - name: SYSTEM_ACCESSTOKEN + value: $(System.AccessToken) - name: ArtifactsJson value: '${{ convertToJson(parameters.Artifacts) }}' diff --git a/eng/pipelines/templates/jobs/build-validate-pom.yml b/eng/pipelines/templates/jobs/build-validate-pom.yml index 79d02ad1dfef..d186d6568b51 100644 --- a/eng/pipelines/templates/jobs/build-validate-pom.yml +++ b/eng/pipelines/templates/jobs/build-validate-pom.yml @@ -13,6 +13,9 @@ jobs: - job: 'BuildAndValidate' displayName: 'Build and Validate' + variables: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) + templateContext: outputs: - output: pipelineArtifact diff --git a/eng/pipelines/templates/jobs/ci.tests.yml b/eng/pipelines/templates/jobs/ci.tests.yml index fdf148f93e98..e5a1980af5fc 100644 --- a/eng/pipelines/templates/jobs/ci.tests.yml +++ b/eng/pipelines/templates/jobs/ci.tests.yml @@ -81,6 +81,8 @@ jobs: variables: - template: /eng/pipelines/templates/variables/globals.yml + - name: SYSTEM_ACCESSTOKEN + value: $(System.AccessToken) timeoutInMinutes: ${{ parameters.TimeoutInMinutes }} diff --git a/eng/pipelines/templates/jobs/ci.versions.tests.yml b/eng/pipelines/templates/jobs/ci.versions.tests.yml index a86c08fdadf0..993d42a8d763 100644 --- a/eng/pipelines/templates/jobs/ci.versions.tests.yml +++ b/eng/pipelines/templates/jobs/ci.versions.tests.yml @@ -45,6 +45,8 @@ jobs: # of yaml in extreme cases. This helps us stay under the devops max yaml size limits. - name: ArtifactsJson value: '${{ convertToJson(parameters.Artifacts) }}' + - name: SYSTEM_ACCESSTOKEN + value: $(System.AccessToken) pool: name: $(LINUXPOOL) diff --git a/eng/pipelines/templates/jobs/ci.yml b/eng/pipelines/templates/jobs/ci.yml index 1556df348c7b..e972340c5e13 100644 --- a/eng/pipelines/templates/jobs/ci.yml +++ b/eng/pipelines/templates/jobs/ci.yml @@ -79,6 +79,7 @@ jobs: Codeql.BuildIdentifier: ${{ parameters.ServiceDirectory }} Codeql.SkipTaskAutoInjection: false SDKType: ${{ parameters.SDKType }} + SYSTEM_ACCESSTOKEN: $(System.AccessToken) # Only run CG and codeql on internal build job ${{ if eq(variables['System.TeamProject'], 'internal') }}: @@ -290,6 +291,9 @@ jobs: - job: 'Analyze' condition: and(succeeded(), ne(variables['Skip.Analyze'], 'true')) + variables: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) + pool: name: $(LINUXPOOL) image: $(LINUXVMIMAGE) diff --git a/eng/pipelines/templates/jobs/live.tests.yml b/eng/pipelines/templates/jobs/live.tests.yml index 90575cda9782..f2de6826c18e 100644 --- a/eng/pipelines/templates/jobs/live.tests.yml +++ b/eng/pipelines/templates/jobs/live.tests.yml @@ -39,6 +39,8 @@ jobs: variables: - name: ArmTemplateParameters value: '@{}' + - name: SYSTEM_ACCESSTOKEN + value: $(System.AccessToken) timeoutInMinutes: ${{ parameters.TimeoutInMinutes }} diff --git a/eng/pipelines/templates/jobs/native.live.tests.yml b/eng/pipelines/templates/jobs/native.live.tests.yml index 0bbbf464fb69..076f71643ef1 100644 --- a/eng/pipelines/templates/jobs/native.live.tests.yml +++ b/eng/pipelines/templates/jobs/native.live.tests.yml @@ -79,6 +79,8 @@ jobs: variables: - name: ArmTemplateParameters value: '@{}' + - name: SYSTEM_ACCESSTOKEN + value: $(System.AccessToken) timeoutInMinutes: ${{ parameters.TimeoutInMinutes }} diff --git a/eng/pipelines/templates/stages/archetype-sdk-client-patch.yml b/eng/pipelines/templates/stages/archetype-sdk-client-patch.yml index ff073bf41b9c..f2c215dcde52 100644 --- a/eng/pipelines/templates/stages/archetype-sdk-client-patch.yml +++ b/eng/pipelines/templates/stages/archetype-sdk-client-patch.yml @@ -36,6 +36,8 @@ extends: value: "${{ replace(convertToJson(parameters.Artifacts), '''', '`''') }}" - name: AdditionalModulesJson value: '${{ convertToJson(parameters.AdditionalModules) }}' + - name: SYSTEM_ACCESSTOKEN + value: $(System.AccessToken) pool: name: $(LINUXPOOL) diff --git a/eng/pipelines/templates/steps/maven-authenticate.yml b/eng/pipelines/templates/steps/maven-authenticate.yml index 748429f1db3b..75f1f8f83d4f 100644 --- a/eng/pipelines/templates/steps/maven-authenticate.yml +++ b/eng/pipelines/templates/steps/maven-authenticate.yml @@ -1,6 +1,12 @@ # Template for authenticating with Azure Artifacts Maven feeds # This should be included before any Maven task that needs to download dependencies # from the central Azure Artifacts feed. +# +# IMPORTANT: The job that includes this template must have SYSTEM_ACCESSTOKEN variable set: +# variables: +# SYSTEM_ACCESSTOKEN: $(System.AccessToken) +# +# This ensures eng/settings.xml (which uses ${env.SYSTEM_ACCESSTOKEN}) can authenticate. parameters: - name: ArtifactsFeeds diff --git a/eng/settings.xml b/eng/settings.xml index 9b077aceed3b..8229ed731150 100644 --- a/eng/settings.xml +++ b/eng/settings.xml @@ -1,9 +1,11 @@ - - central - AzureDevOps - ${env.SYSTEM_ACCESSTOKEN} - + + + central + AzureDevOps + ${env.SYSTEM_ACCESSTOKEN} + + From a1e44b9e832403a514922a65e13fccc9764d318e Mon Sep 17 00:00:00 2001 From: ray chen Date: Wed, 4 Feb 2026 18:45:36 +0000 Subject: [PATCH 05/19] Added token to global variable --- eng/pipelines/aggregate-reports.yml | 2 -- eng/pipelines/code-quality-reports.yml | 2 -- eng/pipelines/templates/jobs/ci.tests.yml | 2 -- .../templates/jobs/ci.versions.tests.yml | 2 -- .../stages/archetype-sdk-client-patch.yml | 2 -- .../templates/steps/build-and-test-native.yml | 16 ++++++++++++---- eng/pipelines/templates/steps/build-and-test.yml | 14 ++++++++++++-- eng/pipelines/templates/variables/globals.yml | 4 ++++ 8 files changed, 28 insertions(+), 16 deletions(-) diff --git a/eng/pipelines/aggregate-reports.yml b/eng/pipelines/aggregate-reports.yml index dc85f2437a7e..86b748e6c13d 100644 --- a/eng/pipelines/aggregate-reports.yml +++ b/eng/pipelines/aggregate-reports.yml @@ -32,8 +32,6 @@ extends: variables: - template: /eng/pipelines/templates/variables/image.yml - - name: SYSTEM_ACCESSTOKEN - value: $(System.AccessToken) - name: ArtifactsJson value: '${{ convertToJson(parameters.Artifacts) }}' pool: diff --git a/eng/pipelines/code-quality-reports.yml b/eng/pipelines/code-quality-reports.yml index 89dd76ea1ed3..6e482fa806b9 100644 --- a/eng/pipelines/code-quality-reports.yml +++ b/eng/pipelines/code-quality-reports.yml @@ -22,8 +22,6 @@ extends: variables: - template: /eng/pipelines/templates/variables/globals.yml - template: /eng/pipelines/templates/variables/image.yml - - name: SYSTEM_ACCESSTOKEN - value: $(System.AccessToken) - name: ArtifactsJson value: '${{ convertToJson(parameters.Artifacts) }}' diff --git a/eng/pipelines/templates/jobs/ci.tests.yml b/eng/pipelines/templates/jobs/ci.tests.yml index e5a1980af5fc..fdf148f93e98 100644 --- a/eng/pipelines/templates/jobs/ci.tests.yml +++ b/eng/pipelines/templates/jobs/ci.tests.yml @@ -81,8 +81,6 @@ jobs: variables: - template: /eng/pipelines/templates/variables/globals.yml - - name: SYSTEM_ACCESSTOKEN - value: $(System.AccessToken) timeoutInMinutes: ${{ parameters.TimeoutInMinutes }} diff --git a/eng/pipelines/templates/jobs/ci.versions.tests.yml b/eng/pipelines/templates/jobs/ci.versions.tests.yml index 993d42a8d763..a86c08fdadf0 100644 --- a/eng/pipelines/templates/jobs/ci.versions.tests.yml +++ b/eng/pipelines/templates/jobs/ci.versions.tests.yml @@ -45,8 +45,6 @@ jobs: # of yaml in extreme cases. This helps us stay under the devops max yaml size limits. - name: ArtifactsJson value: '${{ convertToJson(parameters.Artifacts) }}' - - name: SYSTEM_ACCESSTOKEN - value: $(System.AccessToken) pool: name: $(LINUXPOOL) diff --git a/eng/pipelines/templates/stages/archetype-sdk-client-patch.yml b/eng/pipelines/templates/stages/archetype-sdk-client-patch.yml index f2c215dcde52..ff073bf41b9c 100644 --- a/eng/pipelines/templates/stages/archetype-sdk-client-patch.yml +++ b/eng/pipelines/templates/stages/archetype-sdk-client-patch.yml @@ -36,8 +36,6 @@ extends: value: "${{ replace(convertToJson(parameters.Artifacts), '''', '`''') }}" - name: AdditionalModulesJson value: '${{ convertToJson(parameters.AdditionalModules) }}' - - name: SYSTEM_ACCESSTOKEN - value: $(System.AccessToken) pool: name: $(LINUXPOOL) diff --git a/eng/pipelines/templates/steps/build-and-test-native.yml b/eng/pipelines/templates/steps/build-and-test-native.yml index 322bc1b066c6..f31dc00ac7cb 100644 --- a/eng/pipelines/templates/steps/build-and-test-native.yml +++ b/eng/pipelines/templates/steps/build-and-test-native.yml @@ -43,7 +43,9 @@ steps: jdkDirectory: $(Agent.BuildDirectory)/graalvm-22.3.0 publishJUnitResults: false goals: 'install' - env: ${{ parameters.TestEnvVars }} + env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) + ${{ insert }}: ${{ parameters.TestEnvVars }} condition: and(succeeded(), ne(variables['TestFromSource'], 'true')) - task: Maven@4 @@ -56,7 +58,9 @@ steps: jdkDirectory: $(Agent.BuildDirectory)/graalvm-22.3.0 publishJUnitResults: false goals: ${{ parameters.TestGoals }} - env: ${{ parameters.TestEnvVars }} + env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) + ${{ insert }}: ${{ parameters.TestEnvVars }} # we want to run this when TestFromSource isn't true condition: and(succeeded(), ne(variables['TestFromSource'], 'true')) @@ -95,7 +99,9 @@ steps: javaHomeOption: 'Path' jdkDirectory: $(Agent.BuildDirectory)/graalvm-22.3.0 publishJUnitResults: false - env: ${{ parameters.TestEnvVars }} + env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) + ${{ insert }}: ${{ parameters.TestEnvVars }} condition: and(succeeded(), eq(variables['TestFromSource'], 'true')) - task: Maven@4 @@ -117,7 +123,9 @@ steps: # lifecycle that test or verify targets would execute. The libraries were already # compiled and installed in the previous task, this tasks only runs tests. goals: ${{ parameters.TestGoals }} - env: ${{ parameters.TestEnvVars }} + env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) + ${{ insert }}: ${{ parameters.TestEnvVars }} condition: and(succeeded(), eq(variables['TestFromSource'], 'true')) - template: /eng/pipelines/templates/steps/retain-test-logs.yml diff --git a/eng/pipelines/templates/steps/build-and-test.yml b/eng/pipelines/templates/steps/build-and-test.yml index 733427e5490a..5b0268bd911d 100644 --- a/eng/pipelines/templates/steps/build-and-test.yml +++ b/eng/pipelines/templates/steps/build-and-test.yml @@ -63,6 +63,7 @@ steps: publishJUnitResults: false goals: 'install' env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) VERSION_OVERRIDE_TESTS: ${{ parameters.TestVersionSupport }} condition: and(succeeded(), ne(variables['TestFromSource'], 'true'), ne(variables['FirstTestOverrideRan'], 'true')) @@ -85,6 +86,7 @@ steps: publishJUnitResults: false goals: 'clean install' env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) VERSION_OVERRIDE_TESTS: ${{ parameters.TestVersionSupport }} condition: and(succeeded(), eq(variables['TestVersionSupport'], 'true')) @@ -142,7 +144,9 @@ steps: jdkArchitectureOption: 'x64' publishJUnitResults: false goals: ${{ parameters.TestGoals }} - env: ${{ parameters.TestEnvVars }} + env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) + ${{ insert }}: ${{ parameters.TestEnvVars }} # Generate the pom file with all the modules required for creating an aggregate code coverage report - task: PythonScript@0 @@ -163,6 +167,8 @@ steps: jdkVersionOption: $(JavaTestVersion) jdkArchitectureOption: 'x64' goals: jacoco:report-aggregate + env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) condition: eq(variables['RunAggregateReports'], 'true') - task: Maven@4 @@ -181,6 +187,8 @@ steps: jdkVersionOption: $(JavaTestVersion) jdkArchitectureOption: 'x64' publishJUnitResults: false + env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) condition: and(succeeded(), eq(variables['TestFromSource'], 'true')) - ${{ parameters.PreTestRunSteps }} @@ -239,7 +247,9 @@ steps: # lifecycle that test or verify targets would execute. The libraries were already # compiled and installed in the previous task, this tasks only runs tests. goals: ${{ parameters.TestGoals }} - env: ${{ parameters.TestEnvVars }} + env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) + ${{ insert }}: ${{ parameters.TestEnvVars }} condition: and(succeeded(), eq(variables['TestFromSource'], 'true')) - ${{ if eq(parameters.TestVersionSupport, 'true') }}: diff --git a/eng/pipelines/templates/variables/globals.yml b/eng/pipelines/templates/variables/globals.yml index 674aaebc4750..d902ddf1a037 100644 --- a/eng/pipelines/templates/variables/globals.yml +++ b/eng/pipelines/templates/variables/globals.yml @@ -1,4 +1,8 @@ variables: + # Pass System.AccessToken to environment for Maven authentication with Azure Artifacts + # eng/settings.xml uses ${env.SYSTEM_ACCESSTOKEN} to authenticate + SYSTEM_ACCESSTOKEN: $(System.AccessToken) + DocWardenVersion: '0.7.2' # This is the default Java build version. It's the version used to build the shipping libraries, Spotbugs etc. JavaBuildVersion: '1.25' From b0b46d077b587230bb7468b5d9a504b542cda324 Mon Sep 17 00:00:00 2001 From: ray chen Date: Wed, 4 Feb 2026 19:39:13 +0000 Subject: [PATCH 06/19] Removed network isolation policy for testing --- eng/pipelines/templates/stages/1es-redirect.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/eng/pipelines/templates/stages/1es-redirect.yml b/eng/pipelines/templates/stages/1es-redirect.yml index e4c2c71342cd..95fa178f9fa2 100644 --- a/eng/pipelines/templates/stages/1es-redirect.yml +++ b/eng/pipelines/templates/stages/1es-redirect.yml @@ -40,9 +40,6 @@ extends: - 1ES.PT.Tag-refs/tags/canary settings: skipBuildTagsForGitHubPullRequests: true - # Set network isolation policy to Preferred to allow access to common public services like GitHub, NuGet, Maven Central, etc. - # https://eng.ms/docs/coreai/devdiv/one-engineering-system-1es/1es-build/cloudbuild/security/1espt-network-isolation#shared-policies-for-common-use-cases - networkIsolationPolicy: Permissive sdl: ${{ if and(eq(variables['Build.DefinitionName'], 'java - core'), eq(variables['Build.SourceBranchName'], 'main'), eq(variables['System.TeamProject'], 'internal')) }}: autobaseline: From 4fb40c8367c8178e6aea0dae96a4bf07ed6225d7 Mon Sep 17 00:00:00 2001 From: ray chen Date: Wed, 4 Feb 2026 22:37:57 +0000 Subject: [PATCH 07/19] increase timeout --- eng/common/pipelines/templates/steps/publish-1es-artifact.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eng/common/pipelines/templates/steps/publish-1es-artifact.yml b/eng/common/pipelines/templates/steps/publish-1es-artifact.yml index 30d38828e720..169529646787 100644 --- a/eng/common/pipelines/templates/steps/publish-1es-artifact.yml +++ b/eng/common/pipelines/templates/steps/publish-1es-artifact.yml @@ -36,3 +36,6 @@ steps: sbomEnabled: false ${{ else }}: sbomEnabled: ${{ parameters.SbomEnabled }} + env: + ManifestGeneratorTaskTimeoutInMinutes: 40 + ManifestGeneratorTaskFailOnTimeout: false From faeb9abbb189d217e33da1c237976c9b72e0f8b0 Mon Sep 17 00:00:00 2001 From: ray chen Date: Wed, 4 Feb 2026 22:50:00 +0000 Subject: [PATCH 08/19] added mirror setting --- eng/settings.xml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/eng/settings.xml b/eng/settings.xml index 8229ed731150..7bfe451bdc13 100644 --- a/eng/settings.xml +++ b/eng/settings.xml @@ -8,4 +8,13 @@ ${env.SYSTEM_ACCESSTOKEN} + + + + central + Azure Artifacts Maven Mirror + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + * + + From 7d5f6099dc4ce16ce80d73046bafa848ee3ee5a9 Mon Sep 17 00:00:00 2001 From: ray chen Date: Wed, 4 Feb 2026 22:59:50 +0000 Subject: [PATCH 09/19] removed unused file --- eng/pipelines/aggregate-reports.yml | 2 -- eng/pipelines/code-quality-reports.yml | 2 -- .../templates/jobs/build-validate-pom.yml | 2 -- eng/pipelines/templates/jobs/ci.yml | 2 -- .../stages/archetype-sdk-client-patch.yml | 2 -- .../templates/steps/build-and-test-native.yml | 2 -- .../templates/steps/build-and-test.yml | 2 -- .../templates/steps/maven-authenticate.yml | 20 ------------------- .../steps/run-and-validate-linting.yml | 3 --- 9 files changed, 37 deletions(-) delete mode 100644 eng/pipelines/templates/steps/maven-authenticate.yml diff --git a/eng/pipelines/aggregate-reports.yml b/eng/pipelines/aggregate-reports.yml index 86b748e6c13d..371c5fa33177 100644 --- a/eng/pipelines/aggregate-reports.yml +++ b/eng/pipelines/aggregate-reports.yml @@ -43,8 +43,6 @@ extends: parameters: JobType: 'Reporting' - - template: /eng/pipelines/templates/steps/maven-authenticate.yml - # TODO (vcolin7): Evaluate if we can avoid separating the Cosmos Spark connectors and Java 7 libraries from the rest for this. See: https://github.com/Azure/azure-sdk-for-java/issues/38283. - task: Maven@4 displayName: 'Build all libraries that support Java $(JavaBuildVersion)' diff --git a/eng/pipelines/code-quality-reports.yml b/eng/pipelines/code-quality-reports.yml index 6e482fa806b9..b770b633043f 100644 --- a/eng/pipelines/code-quality-reports.yml +++ b/eng/pipelines/code-quality-reports.yml @@ -89,8 +89,6 @@ extends: pwsh: true displayName: 'Generate Linting Commands' - - template: /eng/pipelines/templates/steps/maven-authenticate.yml - - task: Maven@4 displayName: 'Build and Run Linting' inputs: diff --git a/eng/pipelines/templates/jobs/build-validate-pom.yml b/eng/pipelines/templates/jobs/build-validate-pom.yml index d186d6568b51..584bc1a82059 100644 --- a/eng/pipelines/templates/jobs/build-validate-pom.yml +++ b/eng/pipelines/templates/jobs/build-validate-pom.yml @@ -55,8 +55,6 @@ jobs: parameters: JobType: 'Build and Validate' - - template: /eng/pipelines/templates/steps/maven-authenticate.yml - - ${{ each artifact in parameters.Artifacts }}: - task: Maven@4 displayName: 'Prepare POM: ${{artifact.groupId}}:${{artifact.name}}' diff --git a/eng/pipelines/templates/jobs/ci.yml b/eng/pipelines/templates/jobs/ci.yml index e972340c5e13..9f62d26029d2 100644 --- a/eng/pipelines/templates/jobs/ci.yml +++ b/eng/pipelines/templates/jobs/ci.yml @@ -200,8 +200,6 @@ jobs: python -m pip install markdown2==2.4.6 BeautifulSoup4==4.11.1 displayName: 'pip install markdown2 and BeautifulSoup4' - - template: /eng/pipelines/templates/steps/maven-authenticate.yml - - task: Maven@4 displayName: 'Build and Package, JDK Version: ${{ parameters.JavaBuildVersion }}' inputs: diff --git a/eng/pipelines/templates/stages/archetype-sdk-client-patch.yml b/eng/pipelines/templates/stages/archetype-sdk-client-patch.yml index ff073bf41b9c..d22601358369 100644 --- a/eng/pipelines/templates/stages/archetype-sdk-client-patch.yml +++ b/eng/pipelines/templates/stages/archetype-sdk-client-patch.yml @@ -124,8 +124,6 @@ extends: PackagePropertiesFolder: $(Build.ArtifactStagingDirectory)/PackageInfo ForRelease: true - - template: /eng/pipelines/templates/steps/maven-authenticate.yml - - task: Maven@4 displayName: 'Build From Source and Package, JDK Version: ${{ parameters.JavaBuildVersion }}' inputs: diff --git a/eng/pipelines/templates/steps/build-and-test-native.yml b/eng/pipelines/templates/steps/build-and-test-native.yml index f31dc00ac7cb..0a0a33df8edc 100644 --- a/eng/pipelines/templates/steps/build-and-test-native.yml +++ b/eng/pipelines/templates/steps/build-and-test-native.yml @@ -31,8 +31,6 @@ parameters: default: 'com.azure.resourcemanager:azure-resourcemanager-samples' steps: - - template: /eng/pipelines/templates/steps/maven-authenticate.yml - - task: Maven@4 displayName: 'Build for non-From Source run' inputs: diff --git a/eng/pipelines/templates/steps/build-and-test.yml b/eng/pipelines/templates/steps/build-and-test.yml index 5b0268bd911d..f46c595fd857 100644 --- a/eng/pipelines/templates/steps/build-and-test.yml +++ b/eng/pipelines/templates/steps/build-and-test.yml @@ -46,8 +46,6 @@ parameters: default: [ ] steps: - - template: /eng/pipelines/templates/steps/maven-authenticate.yml - - task: Maven@4 ${{ if eq(parameters.TestVersionSupport, 'true') }}: displayName: '${{ parameters.VersionOverride }} - Build for non-From Source run' diff --git a/eng/pipelines/templates/steps/maven-authenticate.yml b/eng/pipelines/templates/steps/maven-authenticate.yml deleted file mode 100644 index 75f1f8f83d4f..000000000000 --- a/eng/pipelines/templates/steps/maven-authenticate.yml +++ /dev/null @@ -1,20 +0,0 @@ -# Template for authenticating with Azure Artifacts Maven feeds -# This should be included before any Maven task that needs to download dependencies -# from the central Azure Artifacts feed. -# -# IMPORTANT: The job that includes this template must have SYSTEM_ACCESSTOKEN variable set: -# variables: -# SYSTEM_ACCESSTOKEN: $(System.AccessToken) -# -# This ensures eng/settings.xml (which uses ${env.SYSTEM_ACCESSTOKEN}) can authenticate. - -parameters: - - name: ArtifactsFeeds - type: string - default: 'central' - -steps: - - task: MavenAuthenticate@0 - displayName: 'Authenticate with Azure Artifacts' - inputs: - artifactsFeeds: ${{ parameters.ArtifactsFeeds }} diff --git a/eng/pipelines/templates/steps/run-and-validate-linting.yml b/eng/pipelines/templates/steps/run-and-validate-linting.yml index e351a793fd9d..976764bc5c59 100644 --- a/eng/pipelines/templates/steps/run-and-validate-linting.yml +++ b/eng/pipelines/templates/steps/run-and-validate-linting.yml @@ -19,9 +19,6 @@ parameters: default: client steps: - # maven dependency:tree needs to be able to resolve dependencies, so these should be installed. - - template: /eng/pipelines/templates/steps/maven-authenticate.yml - - task: Maven@4 ${{ if ne(parameters.SDKType, 'client') }}: displayName: 'Build and Run SpotBugs and Checkstyle' From 2b4a4f7746ce590468db3046c5ef2e8a531eff6a Mon Sep 17 00:00:00 2001 From: ray chen Date: Wed, 4 Feb 2026 23:32:39 +0000 Subject: [PATCH 10/19] Updated spring ymls --- .../templates/steps/publish-1es-artifact.yml | 3 -- .../templates/stages/1es-redirect.yml | 3 ++ eng/settings.xml | 7 +++- .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../spring-cloud-azure-starter-cosmos/pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ sdk/spring/spring-cloud-azure-starter/pom.xml | 34 +++++++------------ 32 files changed, 386 insertions(+), 613 deletions(-) diff --git a/eng/common/pipelines/templates/steps/publish-1es-artifact.yml b/eng/common/pipelines/templates/steps/publish-1es-artifact.yml index 169529646787..30d38828e720 100644 --- a/eng/common/pipelines/templates/steps/publish-1es-artifact.yml +++ b/eng/common/pipelines/templates/steps/publish-1es-artifact.yml @@ -36,6 +36,3 @@ steps: sbomEnabled: false ${{ else }}: sbomEnabled: ${{ parameters.SbomEnabled }} - env: - ManifestGeneratorTaskTimeoutInMinutes: 40 - ManifestGeneratorTaskFailOnTimeout: false diff --git a/eng/pipelines/templates/stages/1es-redirect.yml b/eng/pipelines/templates/stages/1es-redirect.yml index 95fa178f9fa2..e4c2c71342cd 100644 --- a/eng/pipelines/templates/stages/1es-redirect.yml +++ b/eng/pipelines/templates/stages/1es-redirect.yml @@ -40,6 +40,9 @@ extends: - 1ES.PT.Tag-refs/tags/canary settings: skipBuildTagsForGitHubPullRequests: true + # Set network isolation policy to Preferred to allow access to common public services like GitHub, NuGet, Maven Central, etc. + # https://eng.ms/docs/coreai/devdiv/one-engineering-system-1es/1es-build/cloudbuild/security/1espt-network-isolation#shared-policies-for-common-use-cases + networkIsolationPolicy: Permissive sdl: ${{ if and(eq(variables['Build.DefinitionName'], 'java - core'), eq(variables['Build.SourceBranchName'], 'main'), eq(variables['System.TeamProject'], 'internal')) }}: autobaseline: diff --git a/eng/settings.xml b/eng/settings.xml index 7bfe451bdc13..d281d990148c 100644 --- a/eng/settings.xml +++ b/eng/settings.xml @@ -3,7 +3,12 @@ https://maven.apache.org/xsd/settings-1.0.0.xsd"> - central + central + AzureDevOps + ${env.SYSTEM_ACCESSTOKEN} + + + azure-sdk-for-java AzureDevOps ${env.SYSTEM_ACCESSTOKEN} diff --git a/sdk/spring/spring-cloud-azure-starter-active-directory-b2c/pom.xml b/sdk/spring/spring-cloud-azure-starter-active-directory-b2c/pom.xml index eba814794f0d..cd4bf9c8b098 100644 --- a/sdk/spring/spring-cloud-azure-starter-active-directory-b2c/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-active-directory-b2c/pom.xml @@ -48,37 +48,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-active-directory/pom.xml b/sdk/spring/spring-cloud-azure-starter-active-directory/pom.xml index 068459a49f9c..fa5034c7bd3a 100644 --- a/sdk/spring/spring-cloud-azure-starter-active-directory/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-active-directory/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-actuator/pom.xml b/sdk/spring/spring-cloud-azure-starter-actuator/pom.xml index 76d00f992d23..be760ff35a0b 100644 --- a/sdk/spring/spring-cloud-azure-starter-actuator/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-actuator/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-appconfiguration-config/pom.xml b/sdk/spring/spring-cloud-azure-starter-appconfiguration-config/pom.xml index fbc626ad7ffe..787adddbb8de 100644 --- a/sdk/spring/spring-cloud-azure-starter-appconfiguration-config/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-appconfiguration-config/pom.xml @@ -46,37 +46,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-appconfiguration/pom.xml b/sdk/spring/spring-cloud-azure-starter-appconfiguration/pom.xml index 4de16b031274..b5d62041e750 100644 --- a/sdk/spring/spring-cloud-azure-starter-appconfiguration/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-appconfiguration/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-cosmos/pom.xml b/sdk/spring/spring-cloud-azure-starter-cosmos/pom.xml index 3fa8a7c49fad..10d478f188cd 100644 --- a/sdk/spring/spring-cloud-azure-starter-cosmos/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-cosmos/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-data-cosmos/pom.xml b/sdk/spring/spring-cloud-azure-starter-data-cosmos/pom.xml index 86eac0993b7f..7995e8c1d22c 100644 --- a/sdk/spring/spring-cloud-azure-starter-data-cosmos/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-data-cosmos/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-data-redis-lettuce/pom.xml b/sdk/spring/spring-cloud-azure-starter-data-redis-lettuce/pom.xml index 4982e3f9cef1..d1e72b52e7b6 100644 --- a/sdk/spring/spring-cloud-azure-starter-data-redis-lettuce/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-data-redis-lettuce/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-eventgrid/pom.xml b/sdk/spring/spring-cloud-azure-starter-eventgrid/pom.xml index 1f6a54bf7e59..47fe7401bc8e 100644 --- a/sdk/spring/spring-cloud-azure-starter-eventgrid/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-eventgrid/pom.xml @@ -48,37 +48,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-eventhubs/pom.xml b/sdk/spring/spring-cloud-azure-starter-eventhubs/pom.xml index 236675f48dd9..84d0df465e23 100644 --- a/sdk/spring/spring-cloud-azure-starter-eventhubs/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-eventhubs/pom.xml @@ -48,37 +48,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-integration-eventhubs/pom.xml b/sdk/spring/spring-cloud-azure-starter-integration-eventhubs/pom.xml index 2c212bc04b52..8c6ca9d334ee 100644 --- a/sdk/spring/spring-cloud-azure-starter-integration-eventhubs/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-integration-eventhubs/pom.xml @@ -48,37 +48,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-integration-servicebus/pom.xml b/sdk/spring/spring-cloud-azure-starter-integration-servicebus/pom.xml index c1e87552710c..491a0c2fd115 100644 --- a/sdk/spring/spring-cloud-azure-starter-integration-servicebus/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-integration-servicebus/pom.xml @@ -48,37 +48,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-integration-storage-queue/pom.xml b/sdk/spring/spring-cloud-azure-starter-integration-storage-queue/pom.xml index 343b6eb4d30e..24509ab326d0 100644 --- a/sdk/spring/spring-cloud-azure-starter-integration-storage-queue/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-integration-storage-queue/pom.xml @@ -51,37 +51,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-jdbc-mysql/pom.xml b/sdk/spring/spring-cloud-azure-starter-jdbc-mysql/pom.xml index 746708f80148..60d5c277ef69 100644 --- a/sdk/spring/spring-cloud-azure-starter-jdbc-mysql/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-jdbc-mysql/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-jdbc-postgresql/pom.xml b/sdk/spring/spring-cloud-azure-starter-jdbc-postgresql/pom.xml index 4b0cf9dd7ca1..2c9764b99e1e 100644 --- a/sdk/spring/spring-cloud-azure-starter-jdbc-postgresql/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-jdbc-postgresql/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-keyvault-certificates/pom.xml b/sdk/spring/spring-cloud-azure-starter-keyvault-certificates/pom.xml index 56e5013f2877..983873bab5b6 100644 --- a/sdk/spring/spring-cloud-azure-starter-keyvault-certificates/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-keyvault-certificates/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-keyvault-jca/pom.xml b/sdk/spring/spring-cloud-azure-starter-keyvault-jca/pom.xml index 2824687428f7..4e810b653d44 100644 --- a/sdk/spring/spring-cloud-azure-starter-keyvault-jca/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-keyvault-jca/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-keyvault-secrets/pom.xml b/sdk/spring/spring-cloud-azure-starter-keyvault-secrets/pom.xml index dbc2e1d38761..a216f2ed4b9e 100644 --- a/sdk/spring/spring-cloud-azure-starter-keyvault-secrets/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-keyvault-secrets/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-keyvault/pom.xml b/sdk/spring/spring-cloud-azure-starter-keyvault/pom.xml index 63ef743b464d..9f12b84c4783 100644 --- a/sdk/spring/spring-cloud-azure-starter-keyvault/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-keyvault/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-monitor/pom.xml b/sdk/spring/spring-cloud-azure-starter-monitor/pom.xml index 80b2d1781d40..c10ed7a9e6b1 100644 --- a/sdk/spring/spring-cloud-azure-starter-monitor/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-monitor/pom.xml @@ -37,37 +37,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-servicebus-jms/pom.xml b/sdk/spring/spring-cloud-azure-starter-servicebus-jms/pom.xml index 2d4c1aa11191..6d7ead48c708 100644 --- a/sdk/spring/spring-cloud-azure-starter-servicebus-jms/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-servicebus-jms/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-servicebus/pom.xml b/sdk/spring/spring-cloud-azure-starter-servicebus/pom.xml index 0faa06cbc75f..15d608afb755 100644 --- a/sdk/spring/spring-cloud-azure-starter-servicebus/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-servicebus/pom.xml @@ -48,37 +48,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-storage-blob/pom.xml b/sdk/spring/spring-cloud-azure-starter-storage-blob/pom.xml index 936ec5b0b928..3edea0d890c7 100644 --- a/sdk/spring/spring-cloud-azure-starter-storage-blob/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-storage-blob/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-storage-file-share/pom.xml b/sdk/spring/spring-cloud-azure-starter-storage-file-share/pom.xml index 5777d6563473..5f5b21852af2 100644 --- a/sdk/spring/spring-cloud-azure-starter-storage-file-share/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-storage-file-share/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-storage-queue/pom.xml b/sdk/spring/spring-cloud-azure-starter-storage-queue/pom.xml index c556d291e0d3..ac10dcc62a4f 100644 --- a/sdk/spring/spring-cloud-azure-starter-storage-queue/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-storage-queue/pom.xml @@ -51,37 +51,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-storage/pom.xml b/sdk/spring/spring-cloud-azure-starter-storage/pom.xml index 97c507f8df0c..628c8868cf3c 100644 --- a/sdk/spring/spring-cloud-azure-starter-storage/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-storage/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-stream-eventhubs/pom.xml b/sdk/spring/spring-cloud-azure-starter-stream-eventhubs/pom.xml index e2ffa07e9111..acb280bc50aa 100644 --- a/sdk/spring/spring-cloud-azure-starter-stream-eventhubs/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-stream-eventhubs/pom.xml @@ -48,37 +48,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-stream-servicebus/pom.xml b/sdk/spring/spring-cloud-azure-starter-stream-servicebus/pom.xml index cda8860cea94..88ce054ae0e2 100644 --- a/sdk/spring/spring-cloud-azure-starter-stream-servicebus/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-stream-servicebus/pom.xml @@ -48,37 +48,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter/pom.xml b/sdk/spring/spring-cloud-azure-starter/pom.xml index 50bfcf6e5e92..6bdfb8e4a972 100644 --- a/sdk/spring/spring-cloud-azure-starter/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs From 2f6dd60a7826d600eaa7bc6dbfa2ea35595eef8a Mon Sep 17 00:00:00 2001 From: ray chen Date: Thu, 5 Feb 2026 00:26:46 +0000 Subject: [PATCH 11/19] Reverted changes to spring pom file --- sdk/clientcore/annotation-processor/pom.xml | 34 ------------------- .../pom.xml | 34 ++++++++++++------- .../pom.xml | 34 ++++++++++++------- .../pom.xml | 34 ++++++++++++------- .../pom.xml | 34 ++++++++++++------- .../pom.xml | 34 ++++++++++++------- .../spring-cloud-azure-starter-cosmos/pom.xml | 34 ++++++++++++------- .../pom.xml | 34 ++++++++++++------- .../pom.xml | 34 ++++++++++++------- .../pom.xml | 34 ++++++++++++------- .../pom.xml | 34 ++++++++++++------- .../pom.xml | 34 ++++++++++++------- .../pom.xml | 34 ++++++++++++------- .../pom.xml | 34 ++++++++++++------- .../pom.xml | 34 ++++++++++++------- .../pom.xml | 34 ++++++++++++------- .../pom.xml | 34 ++++++++++++------- .../pom.xml | 34 ++++++++++++------- .../pom.xml | 34 ++++++++++++------- .../pom.xml | 34 ++++++++++++------- .../pom.xml | 34 ++++++++++++------- .../pom.xml | 34 ++++++++++++------- .../pom.xml | 34 ++++++++++++------- .../pom.xml | 34 ++++++++++++------- .../pom.xml | 34 ++++++++++++------- .../pom.xml | 34 ++++++++++++------- .../pom.xml | 34 ++++++++++++------- .../pom.xml | 34 ++++++++++++------- .../pom.xml | 34 ++++++++++++------- sdk/spring/spring-cloud-azure-starter/pom.xml | 34 ++++++++++++------- 30 files changed, 609 insertions(+), 411 deletions(-) diff --git a/sdk/clientcore/annotation-processor/pom.xml b/sdk/clientcore/annotation-processor/pom.xml index 0a4c356db68e..df9cf1be2264 100644 --- a/sdk/clientcore/annotation-processor/pom.xml +++ b/sdk/clientcore/annotation-processor/pom.xml @@ -40,41 +40,7 @@ - - - - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - - - - - - - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - - - - - - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default - azure-java-build-docs ${site.url}/site/ diff --git a/sdk/spring/spring-cloud-azure-starter-active-directory-b2c/pom.xml b/sdk/spring/spring-cloud-azure-starter-active-directory-b2c/pom.xml index cd4bf9c8b098..eba814794f0d 100644 --- a/sdk/spring/spring-cloud-azure-starter-active-directory-b2c/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-active-directory-b2c/pom.xml @@ -48,29 +48,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-active-directory/pom.xml b/sdk/spring/spring-cloud-azure-starter-active-directory/pom.xml index fa5034c7bd3a..068459a49f9c 100644 --- a/sdk/spring/spring-cloud-azure-starter-active-directory/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-active-directory/pom.xml @@ -47,29 +47,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-actuator/pom.xml b/sdk/spring/spring-cloud-azure-starter-actuator/pom.xml index be760ff35a0b..76d00f992d23 100644 --- a/sdk/spring/spring-cloud-azure-starter-actuator/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-actuator/pom.xml @@ -47,29 +47,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-appconfiguration-config/pom.xml b/sdk/spring/spring-cloud-azure-starter-appconfiguration-config/pom.xml index 787adddbb8de..fbc626ad7ffe 100644 --- a/sdk/spring/spring-cloud-azure-starter-appconfiguration-config/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-appconfiguration-config/pom.xml @@ -46,29 +46,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-appconfiguration/pom.xml b/sdk/spring/spring-cloud-azure-starter-appconfiguration/pom.xml index b5d62041e750..4de16b031274 100644 --- a/sdk/spring/spring-cloud-azure-starter-appconfiguration/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-appconfiguration/pom.xml @@ -47,29 +47,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-cosmos/pom.xml b/sdk/spring/spring-cloud-azure-starter-cosmos/pom.xml index 10d478f188cd..3fa8a7c49fad 100644 --- a/sdk/spring/spring-cloud-azure-starter-cosmos/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-cosmos/pom.xml @@ -47,29 +47,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-data-cosmos/pom.xml b/sdk/spring/spring-cloud-azure-starter-data-cosmos/pom.xml index 7995e8c1d22c..86eac0993b7f 100644 --- a/sdk/spring/spring-cloud-azure-starter-data-cosmos/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-data-cosmos/pom.xml @@ -47,29 +47,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-data-redis-lettuce/pom.xml b/sdk/spring/spring-cloud-azure-starter-data-redis-lettuce/pom.xml index d1e72b52e7b6..4982e3f9cef1 100644 --- a/sdk/spring/spring-cloud-azure-starter-data-redis-lettuce/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-data-redis-lettuce/pom.xml @@ -47,29 +47,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-eventgrid/pom.xml b/sdk/spring/spring-cloud-azure-starter-eventgrid/pom.xml index 47fe7401bc8e..1f6a54bf7e59 100644 --- a/sdk/spring/spring-cloud-azure-starter-eventgrid/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-eventgrid/pom.xml @@ -48,29 +48,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-eventhubs/pom.xml b/sdk/spring/spring-cloud-azure-starter-eventhubs/pom.xml index 84d0df465e23..236675f48dd9 100644 --- a/sdk/spring/spring-cloud-azure-starter-eventhubs/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-eventhubs/pom.xml @@ -48,29 +48,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-integration-eventhubs/pom.xml b/sdk/spring/spring-cloud-azure-starter-integration-eventhubs/pom.xml index 8c6ca9d334ee..2c212bc04b52 100644 --- a/sdk/spring/spring-cloud-azure-starter-integration-eventhubs/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-integration-eventhubs/pom.xml @@ -48,29 +48,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-integration-servicebus/pom.xml b/sdk/spring/spring-cloud-azure-starter-integration-servicebus/pom.xml index 491a0c2fd115..c1e87552710c 100644 --- a/sdk/spring/spring-cloud-azure-starter-integration-servicebus/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-integration-servicebus/pom.xml @@ -48,29 +48,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-integration-storage-queue/pom.xml b/sdk/spring/spring-cloud-azure-starter-integration-storage-queue/pom.xml index 24509ab326d0..343b6eb4d30e 100644 --- a/sdk/spring/spring-cloud-azure-starter-integration-storage-queue/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-integration-storage-queue/pom.xml @@ -51,29 +51,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-jdbc-mysql/pom.xml b/sdk/spring/spring-cloud-azure-starter-jdbc-mysql/pom.xml index 60d5c277ef69..746708f80148 100644 --- a/sdk/spring/spring-cloud-azure-starter-jdbc-mysql/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-jdbc-mysql/pom.xml @@ -47,29 +47,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-jdbc-postgresql/pom.xml b/sdk/spring/spring-cloud-azure-starter-jdbc-postgresql/pom.xml index 2c9764b99e1e..4b0cf9dd7ca1 100644 --- a/sdk/spring/spring-cloud-azure-starter-jdbc-postgresql/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-jdbc-postgresql/pom.xml @@ -47,29 +47,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-keyvault-certificates/pom.xml b/sdk/spring/spring-cloud-azure-starter-keyvault-certificates/pom.xml index 983873bab5b6..56e5013f2877 100644 --- a/sdk/spring/spring-cloud-azure-starter-keyvault-certificates/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-keyvault-certificates/pom.xml @@ -47,29 +47,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-keyvault-jca/pom.xml b/sdk/spring/spring-cloud-azure-starter-keyvault-jca/pom.xml index 4e810b653d44..2824687428f7 100644 --- a/sdk/spring/spring-cloud-azure-starter-keyvault-jca/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-keyvault-jca/pom.xml @@ -47,29 +47,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-keyvault-secrets/pom.xml b/sdk/spring/spring-cloud-azure-starter-keyvault-secrets/pom.xml index a216f2ed4b9e..dbc2e1d38761 100644 --- a/sdk/spring/spring-cloud-azure-starter-keyvault-secrets/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-keyvault-secrets/pom.xml @@ -47,29 +47,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-keyvault/pom.xml b/sdk/spring/spring-cloud-azure-starter-keyvault/pom.xml index 9f12b84c4783..63ef743b464d 100644 --- a/sdk/spring/spring-cloud-azure-starter-keyvault/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-keyvault/pom.xml @@ -47,29 +47,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-monitor/pom.xml b/sdk/spring/spring-cloud-azure-starter-monitor/pom.xml index c10ed7a9e6b1..80b2d1781d40 100644 --- a/sdk/spring/spring-cloud-azure-starter-monitor/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-monitor/pom.xml @@ -37,29 +37,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-servicebus-jms/pom.xml b/sdk/spring/spring-cloud-azure-starter-servicebus-jms/pom.xml index 6d7ead48c708..2d4c1aa11191 100644 --- a/sdk/spring/spring-cloud-azure-starter-servicebus-jms/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-servicebus-jms/pom.xml @@ -47,29 +47,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-servicebus/pom.xml b/sdk/spring/spring-cloud-azure-starter-servicebus/pom.xml index 15d608afb755..0faa06cbc75f 100644 --- a/sdk/spring/spring-cloud-azure-starter-servicebus/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-servicebus/pom.xml @@ -48,29 +48,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-storage-blob/pom.xml b/sdk/spring/spring-cloud-azure-starter-storage-blob/pom.xml index 3edea0d890c7..936ec5b0b928 100644 --- a/sdk/spring/spring-cloud-azure-starter-storage-blob/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-storage-blob/pom.xml @@ -47,29 +47,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-storage-file-share/pom.xml b/sdk/spring/spring-cloud-azure-starter-storage-file-share/pom.xml index 5f5b21852af2..5777d6563473 100644 --- a/sdk/spring/spring-cloud-azure-starter-storage-file-share/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-storage-file-share/pom.xml @@ -47,29 +47,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-storage-queue/pom.xml b/sdk/spring/spring-cloud-azure-starter-storage-queue/pom.xml index ac10dcc62a4f..c556d291e0d3 100644 --- a/sdk/spring/spring-cloud-azure-starter-storage-queue/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-storage-queue/pom.xml @@ -51,29 +51,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-storage/pom.xml b/sdk/spring/spring-cloud-azure-starter-storage/pom.xml index 628c8868cf3c..97c507f8df0c 100644 --- a/sdk/spring/spring-cloud-azure-starter-storage/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-storage/pom.xml @@ -47,29 +47,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-stream-eventhubs/pom.xml b/sdk/spring/spring-cloud-azure-starter-stream-eventhubs/pom.xml index acb280bc50aa..e2ffa07e9111 100644 --- a/sdk/spring/spring-cloud-azure-starter-stream-eventhubs/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-stream-eventhubs/pom.xml @@ -48,29 +48,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-stream-servicebus/pom.xml b/sdk/spring/spring-cloud-azure-starter-stream-servicebus/pom.xml index 88ce054ae0e2..cda8860cea94 100644 --- a/sdk/spring/spring-cloud-azure-starter-stream-servicebus/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-stream-servicebus/pom.xml @@ -48,29 +48,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter/pom.xml b/sdk/spring/spring-cloud-azure-starter/pom.xml index 6bdfb8e4a972..50bfcf6e5e92 100644 --- a/sdk/spring/spring-cloud-azure-starter/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter/pom.xml @@ -47,29 +47,37 @@ - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + daily + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + default + + true + always + - central - - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - - + ossrh + Sonatype Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + true + default azure-java-build-docs From 357cf3ebf63cfcd9b595ded2300d3beeb319e100 Mon Sep 17 00:00:00 2001 From: ray chen Date: Thu, 5 Feb 2026 00:42:29 +0000 Subject: [PATCH 12/19] Added back pom changes for spring service --- eng/settings.xml | 4 +-- sdk/cosmos/azure-cosmos-kafka-connect/pom.xml | 5 --- .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../spring-cloud-azure-starter-cosmos/pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ .../pom.xml | 34 +++++++------------ sdk/spring/spring-cloud-azure-starter/pom.xml | 34 +++++++------------ 31 files changed, 379 insertions(+), 616 deletions(-) diff --git a/eng/settings.xml b/eng/settings.xml index d281d990148c..05c276710876 100644 --- a/eng/settings.xml +++ b/eng/settings.xml @@ -14,12 +14,12 @@ - + central Azure Artifacts Maven Mirror https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 - * + *,!confluent diff --git a/sdk/cosmos/azure-cosmos-kafka-connect/pom.xml b/sdk/cosmos/azure-cosmos-kafka-connect/pom.xml index f140a81f8a70..1acae6f0a9f3 100644 --- a/sdk/cosmos/azure-cosmos-kafka-connect/pom.xml +++ b/sdk/cosmos/azure-cosmos-kafka-connect/pom.xml @@ -32,11 +32,6 @@ Licensed under the MIT License. Confluent https://packages.confluent.io/maven/ - - maven-repo1 - Maven Repo1 - https://repo1.maven.org/maven2/ - diff --git a/sdk/spring/spring-cloud-azure-starter-active-directory-b2c/pom.xml b/sdk/spring/spring-cloud-azure-starter-active-directory-b2c/pom.xml index eba814794f0d..cd4bf9c8b098 100644 --- a/sdk/spring/spring-cloud-azure-starter-active-directory-b2c/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-active-directory-b2c/pom.xml @@ -48,37 +48,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-active-directory/pom.xml b/sdk/spring/spring-cloud-azure-starter-active-directory/pom.xml index 068459a49f9c..fa5034c7bd3a 100644 --- a/sdk/spring/spring-cloud-azure-starter-active-directory/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-active-directory/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-actuator/pom.xml b/sdk/spring/spring-cloud-azure-starter-actuator/pom.xml index 76d00f992d23..be760ff35a0b 100644 --- a/sdk/spring/spring-cloud-azure-starter-actuator/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-actuator/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-appconfiguration-config/pom.xml b/sdk/spring/spring-cloud-azure-starter-appconfiguration-config/pom.xml index fbc626ad7ffe..787adddbb8de 100644 --- a/sdk/spring/spring-cloud-azure-starter-appconfiguration-config/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-appconfiguration-config/pom.xml @@ -46,37 +46,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-appconfiguration/pom.xml b/sdk/spring/spring-cloud-azure-starter-appconfiguration/pom.xml index 4de16b031274..b5d62041e750 100644 --- a/sdk/spring/spring-cloud-azure-starter-appconfiguration/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-appconfiguration/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-cosmos/pom.xml b/sdk/spring/spring-cloud-azure-starter-cosmos/pom.xml index 3fa8a7c49fad..10d478f188cd 100644 --- a/sdk/spring/spring-cloud-azure-starter-cosmos/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-cosmos/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-data-cosmos/pom.xml b/sdk/spring/spring-cloud-azure-starter-data-cosmos/pom.xml index 86eac0993b7f..7995e8c1d22c 100644 --- a/sdk/spring/spring-cloud-azure-starter-data-cosmos/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-data-cosmos/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-data-redis-lettuce/pom.xml b/sdk/spring/spring-cloud-azure-starter-data-redis-lettuce/pom.xml index 4982e3f9cef1..d1e72b52e7b6 100644 --- a/sdk/spring/spring-cloud-azure-starter-data-redis-lettuce/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-data-redis-lettuce/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-eventgrid/pom.xml b/sdk/spring/spring-cloud-azure-starter-eventgrid/pom.xml index 1f6a54bf7e59..47fe7401bc8e 100644 --- a/sdk/spring/spring-cloud-azure-starter-eventgrid/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-eventgrid/pom.xml @@ -48,37 +48,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-eventhubs/pom.xml b/sdk/spring/spring-cloud-azure-starter-eventhubs/pom.xml index 236675f48dd9..84d0df465e23 100644 --- a/sdk/spring/spring-cloud-azure-starter-eventhubs/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-eventhubs/pom.xml @@ -48,37 +48,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-integration-eventhubs/pom.xml b/sdk/spring/spring-cloud-azure-starter-integration-eventhubs/pom.xml index 2c212bc04b52..8c6ca9d334ee 100644 --- a/sdk/spring/spring-cloud-azure-starter-integration-eventhubs/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-integration-eventhubs/pom.xml @@ -48,37 +48,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-integration-servicebus/pom.xml b/sdk/spring/spring-cloud-azure-starter-integration-servicebus/pom.xml index c1e87552710c..491a0c2fd115 100644 --- a/sdk/spring/spring-cloud-azure-starter-integration-servicebus/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-integration-servicebus/pom.xml @@ -48,37 +48,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-integration-storage-queue/pom.xml b/sdk/spring/spring-cloud-azure-starter-integration-storage-queue/pom.xml index 343b6eb4d30e..24509ab326d0 100644 --- a/sdk/spring/spring-cloud-azure-starter-integration-storage-queue/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-integration-storage-queue/pom.xml @@ -51,37 +51,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-jdbc-mysql/pom.xml b/sdk/spring/spring-cloud-azure-starter-jdbc-mysql/pom.xml index 746708f80148..60d5c277ef69 100644 --- a/sdk/spring/spring-cloud-azure-starter-jdbc-mysql/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-jdbc-mysql/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-jdbc-postgresql/pom.xml b/sdk/spring/spring-cloud-azure-starter-jdbc-postgresql/pom.xml index 4b0cf9dd7ca1..2c9764b99e1e 100644 --- a/sdk/spring/spring-cloud-azure-starter-jdbc-postgresql/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-jdbc-postgresql/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-keyvault-certificates/pom.xml b/sdk/spring/spring-cloud-azure-starter-keyvault-certificates/pom.xml index 56e5013f2877..983873bab5b6 100644 --- a/sdk/spring/spring-cloud-azure-starter-keyvault-certificates/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-keyvault-certificates/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-keyvault-jca/pom.xml b/sdk/spring/spring-cloud-azure-starter-keyvault-jca/pom.xml index 2824687428f7..4e810b653d44 100644 --- a/sdk/spring/spring-cloud-azure-starter-keyvault-jca/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-keyvault-jca/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-keyvault-secrets/pom.xml b/sdk/spring/spring-cloud-azure-starter-keyvault-secrets/pom.xml index dbc2e1d38761..a216f2ed4b9e 100644 --- a/sdk/spring/spring-cloud-azure-starter-keyvault-secrets/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-keyvault-secrets/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-keyvault/pom.xml b/sdk/spring/spring-cloud-azure-starter-keyvault/pom.xml index 63ef743b464d..9f12b84c4783 100644 --- a/sdk/spring/spring-cloud-azure-starter-keyvault/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-keyvault/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-monitor/pom.xml b/sdk/spring/spring-cloud-azure-starter-monitor/pom.xml index 80b2d1781d40..c10ed7a9e6b1 100644 --- a/sdk/spring/spring-cloud-azure-starter-monitor/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-monitor/pom.xml @@ -37,37 +37,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-servicebus-jms/pom.xml b/sdk/spring/spring-cloud-azure-starter-servicebus-jms/pom.xml index 2d4c1aa11191..6d7ead48c708 100644 --- a/sdk/spring/spring-cloud-azure-starter-servicebus-jms/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-servicebus-jms/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-servicebus/pom.xml b/sdk/spring/spring-cloud-azure-starter-servicebus/pom.xml index 0faa06cbc75f..15d608afb755 100644 --- a/sdk/spring/spring-cloud-azure-starter-servicebus/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-servicebus/pom.xml @@ -48,37 +48,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-storage-blob/pom.xml b/sdk/spring/spring-cloud-azure-starter-storage-blob/pom.xml index 936ec5b0b928..3edea0d890c7 100644 --- a/sdk/spring/spring-cloud-azure-starter-storage-blob/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-storage-blob/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-storage-file-share/pom.xml b/sdk/spring/spring-cloud-azure-starter-storage-file-share/pom.xml index 5777d6563473..5f5b21852af2 100644 --- a/sdk/spring/spring-cloud-azure-starter-storage-file-share/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-storage-file-share/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-storage-queue/pom.xml b/sdk/spring/spring-cloud-azure-starter-storage-queue/pom.xml index c556d291e0d3..ac10dcc62a4f 100644 --- a/sdk/spring/spring-cloud-azure-starter-storage-queue/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-storage-queue/pom.xml @@ -51,37 +51,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-storage/pom.xml b/sdk/spring/spring-cloud-azure-starter-storage/pom.xml index 97c507f8df0c..628c8868cf3c 100644 --- a/sdk/spring/spring-cloud-azure-starter-storage/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-storage/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-stream-eventhubs/pom.xml b/sdk/spring/spring-cloud-azure-starter-stream-eventhubs/pom.xml index e2ffa07e9111..acb280bc50aa 100644 --- a/sdk/spring/spring-cloud-azure-starter-stream-eventhubs/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-stream-eventhubs/pom.xml @@ -48,37 +48,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-stream-servicebus/pom.xml b/sdk/spring/spring-cloud-azure-starter-stream-servicebus/pom.xml index cda8860cea94..88ce054ae0e2 100644 --- a/sdk/spring/spring-cloud-azure-starter-stream-servicebus/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-stream-servicebus/pom.xml @@ -48,37 +48,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter/pom.xml b/sdk/spring/spring-cloud-azure-starter/pom.xml index 50bfcf6e5e92..6bdfb8e4a972 100644 --- a/sdk/spring/spring-cloud-azure-starter/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter/pom.xml @@ -47,37 +47,29 @@ - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - daily - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - default - - true - always - + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + - ossrh - Sonatype Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - true - default + central + + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + + azure-java-build-docs From 090a81fad2cd10d33c3040d87af1ec8f861ce894 Mon Sep 17 00:00:00 2001 From: ray chen Date: Thu, 5 Feb 2026 01:55:19 +0000 Subject: [PATCH 13/19] Updated variables --- eng/pipelines/templates/jobs/ci.yml | 3 ++- eng/pipelines/templates/steps/run-and-validate-linting.yml | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/eng/pipelines/templates/jobs/ci.yml b/eng/pipelines/templates/jobs/ci.yml index 9f62d26029d2..6c9ba86e593b 100644 --- a/eng/pipelines/templates/jobs/ci.yml +++ b/eng/pipelines/templates/jobs/ci.yml @@ -79,7 +79,6 @@ jobs: Codeql.BuildIdentifier: ${{ parameters.ServiceDirectory }} Codeql.SkipTaskAutoInjection: false SDKType: ${{ parameters.SDKType }} - SYSTEM_ACCESSTOKEN: $(System.AccessToken) # Only run CG and codeql on internal build job ${{ if eq(variables['System.TeamProject'], 'internal') }}: @@ -211,6 +210,8 @@ jobs: jdkVersionOption: ${{ parameters.JavaBuildVersion }} jdkArchitectureOption: 'x64' publishJUnitResults: false + env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) - task: PowerShell@2 displayName: 'Verify Required Maven Artifacts' diff --git a/eng/pipelines/templates/steps/run-and-validate-linting.yml b/eng/pipelines/templates/steps/run-and-validate-linting.yml index 976764bc5c59..15c8f4365d02 100644 --- a/eng/pipelines/templates/steps/run-and-validate-linting.yml +++ b/eng/pipelines/templates/steps/run-and-validate-linting.yml @@ -36,6 +36,8 @@ steps: jdkVersionOption: ${{ parameters.JavaBuildVersion }} jdkArchitectureOption: 'x64' publishJUnitResults: false + env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) continueOnError: ${{ parameters.ContinueOnError }} condition: or(eq(coalesce(variables['IsLatestNonLtsJdk'], true), true), and(${{ parameters.RunLinting }}, succeeded())) @@ -66,5 +68,7 @@ steps: goals: 'javadoc:jar' ${{ else }}: goals: 'javadoc:jar codesnippet:verify-codesnippet spotless:check' + env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) continueOnError: ${{ parameters.ContinueOnError }} condition: or(eq(coalesce(variables['IsLatestNonLtsJdk'], true), true), and(${{ parameters.RunLinting }}, succeeded())) From 2704f0ff538b85835d1af6b4db0cab4889030c42 Mon Sep 17 00:00:00 2001 From: ray chen Date: Thu, 5 Feb 2026 02:21:59 +0000 Subject: [PATCH 14/19] Fixed spring test template --- eng/pipelines/aggregate-reports.yml | 8 ++++++++ eng/pipelines/code-quality-reports.yml | 2 ++ eng/pipelines/templates/jobs/build-validate-pom.yml | 5 ++--- eng/pipelines/templates/jobs/ci.yml | 3 --- eng/pipelines/templates/jobs/live.tests.yml | 2 -- eng/pipelines/templates/jobs/native.live.tests.yml | 2 -- .../templates/stages/archetype-sdk-client-patch.yml | 2 ++ eng/pipelines/templates/variables/globals.yml | 4 ---- sdk/spring/pipeline/compatibility-tests-job.yml | 4 ++++ sdk/spring/pipeline/monitor-tests-job.yml | 2 ++ 10 files changed, 20 insertions(+), 14 deletions(-) diff --git a/eng/pipelines/aggregate-reports.yml b/eng/pipelines/aggregate-reports.yml index 371c5fa33177..4426985cbc5f 100644 --- a/eng/pipelines/aggregate-reports.yml +++ b/eng/pipelines/aggregate-reports.yml @@ -55,6 +55,8 @@ extends: jdkArchitectureOption: 'x64' publishJUnitResults: false goals: 'clean install' + env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) - task: Maven@4 displayName: 'Build remaining libraries with Java $(FallbackJavaBuildVersion)' @@ -67,6 +69,8 @@ extends: jdkArchitectureOption: 'x64' publishJUnitResults: false goals: 'clean install' + env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) - pwsh: | New-Item eng/bomgenerator/inputdir -ItemType directory @@ -86,6 +90,8 @@ extends: jdkArchitectureOption: 'x64' publishJUnitResults: false goals: 'clean package' + env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) # Generate the pom file with all the modules required for creating an aggregate code coverage report - task: PythonScript@0 @@ -106,6 +112,8 @@ extends: jdkArchitectureOption: 'x64' publishJUnitResults: false goals: 'javadoc:aggregate' + env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) - pwsh: | $(Build.SourcesDirectory)/eng/DependencyGraph/gen-dep-graph-data.ps1 diff --git a/eng/pipelines/code-quality-reports.yml b/eng/pipelines/code-quality-reports.yml index b770b633043f..e1ccc57224b4 100644 --- a/eng/pipelines/code-quality-reports.yml +++ b/eng/pipelines/code-quality-reports.yml @@ -100,6 +100,8 @@ extends: jdkVersionOption: $(JavaBuildVersion) jdkArchitectureOption: 'x64' publishJUnitResults: false + env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) condition: and(succeeded(), eq(variables['RunLinting'], 'true')) - task: PowerShell@2 diff --git a/eng/pipelines/templates/jobs/build-validate-pom.yml b/eng/pipelines/templates/jobs/build-validate-pom.yml index 584bc1a82059..24a2380a298f 100644 --- a/eng/pipelines/templates/jobs/build-validate-pom.yml +++ b/eng/pipelines/templates/jobs/build-validate-pom.yml @@ -13,9 +13,6 @@ jobs: - job: 'BuildAndValidate' displayName: 'Build and Validate' - variables: - SYSTEM_ACCESSTOKEN: $(System.AccessToken) - templateContext: outputs: - output: pipelineArtifact @@ -70,6 +67,8 @@ jobs: jdkVersionOption: $(JavaBuildVersion) jdkArchitectureOption: 'x64' publishJUnitResults: false + env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) - task: PowerShell@2 displayName: 'Copy artifacts to staging' diff --git a/eng/pipelines/templates/jobs/ci.yml b/eng/pipelines/templates/jobs/ci.yml index 6c9ba86e593b..7068d04ba510 100644 --- a/eng/pipelines/templates/jobs/ci.yml +++ b/eng/pipelines/templates/jobs/ci.yml @@ -290,9 +290,6 @@ jobs: - job: 'Analyze' condition: and(succeeded(), ne(variables['Skip.Analyze'], 'true')) - variables: - SYSTEM_ACCESSTOKEN: $(System.AccessToken) - pool: name: $(LINUXPOOL) image: $(LINUXVMIMAGE) diff --git a/eng/pipelines/templates/jobs/live.tests.yml b/eng/pipelines/templates/jobs/live.tests.yml index f2de6826c18e..90575cda9782 100644 --- a/eng/pipelines/templates/jobs/live.tests.yml +++ b/eng/pipelines/templates/jobs/live.tests.yml @@ -39,8 +39,6 @@ jobs: variables: - name: ArmTemplateParameters value: '@{}' - - name: SYSTEM_ACCESSTOKEN - value: $(System.AccessToken) timeoutInMinutes: ${{ parameters.TimeoutInMinutes }} diff --git a/eng/pipelines/templates/jobs/native.live.tests.yml b/eng/pipelines/templates/jobs/native.live.tests.yml index 076f71643ef1..0bbbf464fb69 100644 --- a/eng/pipelines/templates/jobs/native.live.tests.yml +++ b/eng/pipelines/templates/jobs/native.live.tests.yml @@ -79,8 +79,6 @@ jobs: variables: - name: ArmTemplateParameters value: '@{}' - - name: SYSTEM_ACCESSTOKEN - value: $(System.AccessToken) timeoutInMinutes: ${{ parameters.TimeoutInMinutes }} diff --git a/eng/pipelines/templates/stages/archetype-sdk-client-patch.yml b/eng/pipelines/templates/stages/archetype-sdk-client-patch.yml index d22601358369..65d28cef5ead 100644 --- a/eng/pipelines/templates/stages/archetype-sdk-client-patch.yml +++ b/eng/pipelines/templates/stages/archetype-sdk-client-patch.yml @@ -135,6 +135,8 @@ extends: jdkVersionOption: ${{ parameters.JavaBuildVersion }} jdkArchitectureOption: 'x64' publishJUnitResults: false + env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) - task: PowerShell@2 displayName: 'Verify Required Maven Artifacts' diff --git a/eng/pipelines/templates/variables/globals.yml b/eng/pipelines/templates/variables/globals.yml index d902ddf1a037..674aaebc4750 100644 --- a/eng/pipelines/templates/variables/globals.yml +++ b/eng/pipelines/templates/variables/globals.yml @@ -1,8 +1,4 @@ variables: - # Pass System.AccessToken to environment for Maven authentication with Azure Artifacts - # eng/settings.xml uses ${env.SYSTEM_ACCESSTOKEN} to authenticate - SYSTEM_ACCESSTOKEN: $(System.AccessToken) - DocWardenVersion: '0.7.2' # This is the default Java build version. It's the version used to build the shipping libraries, Spotbugs etc. JavaBuildVersion: '1.25' diff --git a/sdk/spring/pipeline/compatibility-tests-job.yml b/sdk/spring/pipeline/compatibility-tests-job.yml index 436f514afdcf..2dfd61d3ab9f 100644 --- a/sdk/spring/pipeline/compatibility-tests-job.yml +++ b/sdk/spring/pipeline/compatibility-tests-job.yml @@ -77,6 +77,8 @@ jobs: jdkVersionOption: $(JavaTestVersion) jdkArchitectureOption: 'x64' publishJUnitResults: false + env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) - script: | python -m pip install termcolor displayName: 'Install python module' @@ -111,4 +113,6 @@ jobs: jdkVersionOption: $(JavaTestVersion) jdkArchitectureOption: 'x64' goals: 'clean install -Pdev ' + env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) diff --git a/sdk/spring/pipeline/monitor-tests-job.yml b/sdk/spring/pipeline/monitor-tests-job.yml index f273947c1f40..55d6dcedeb20 100644 --- a/sdk/spring/pipeline/monitor-tests-job.yml +++ b/sdk/spring/pipeline/monitor-tests-job.yml @@ -40,4 +40,6 @@ jobs: jdkVersionOption: $(JavaTestVersion) jdkArchitectureOption: 'x64' goals: 'clean verify -Pmonitor' + env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) From 60bdecb1ec42a8b944cb7f5fdc4d43cb5bc29031 Mon Sep 17 00:00:00 2001 From: Ray Chen Date: Wed, 11 Feb 2026 14:15:41 -0800 Subject: [PATCH 15/19] validate with test feed --- .mvn/extensions.xml | 8 ++++++ eng/pipelines/aggregate-reports.yml | 11 +++----- eng/pipelines/code-quality-reports.yml | 5 ++-- .../templates/jobs/build-validate-pom.yml | 5 ++-- eng/pipelines/templates/jobs/ci.yml | 5 ++-- .../stages/archetype-sdk-client-patch.yml | 5 ++-- .../templates/steps/build-and-test-native.yml | 7 +++-- .../templates/steps/build-and-test.yml | 13 +++------- .../templates/steps/maven-authenticate.yml | 12 +++++++++ .../steps/run-and-validate-linting.yml | 7 +++-- eng/repo-docs/docms/daily.update.setting.xml | 2 +- eng/scripts/setup-dev.ps1 | 26 +++++++++++++++++++ eng/settings.xml | 14 +--------- sdk/ai/azure-ai-projects/pom.xml | 2 +- .../azure-client-sdk-parent-v2/pom.xml | 6 ++--- sdk/parents/azure-client-sdk-parent/pom.xml | 6 ++--- sdk/parents/azure-sdk-parent/pom.xml | 4 +-- sdk/parents/clientcore-parent/pom.xml | 6 ++--- .../pom.xml | 6 ++--- .../pom.xml | 6 ++--- .../pom.xml | 6 ++--- .../pom.xml | 6 ++--- .../pom.xml | 6 ++--- .../spring-cloud-azure-starter-cosmos/pom.xml | 6 ++--- .../pom.xml | 6 ++--- .../pom.xml | 6 ++--- .../pom.xml | 6 ++--- .../pom.xml | 6 ++--- .../pom.xml | 6 ++--- .../pom.xml | 6 ++--- .../pom.xml | 6 ++--- .../pom.xml | 6 ++--- .../pom.xml | 6 ++--- .../pom.xml | 6 ++--- .../pom.xml | 6 ++--- .../pom.xml | 6 ++--- .../pom.xml | 6 ++--- .../pom.xml | 6 ++--- .../pom.xml | 6 ++--- .../pom.xml | 6 ++--- .../pom.xml | 6 ++--- .../pom.xml | 6 ++--- .../pom.xml | 6 ++--- .../pom.xml | 6 ++--- .../pom.xml | 6 ++--- .../pom.xml | 6 ++--- sdk/spring/spring-cloud-azure-starter/pom.xml | 6 ++--- 47 files changed, 171 insertions(+), 147 deletions(-) create mode 100644 .mvn/extensions.xml create mode 100644 eng/pipelines/templates/steps/maven-authenticate.yml create mode 100644 eng/scripts/setup-dev.ps1 diff --git a/.mvn/extensions.xml b/.mvn/extensions.xml new file mode 100644 index 000000000000..62f0bbf0e12d --- /dev/null +++ b/.mvn/extensions.xml @@ -0,0 +1,8 @@ + + + com.microsoft.azure + artifacts-maven-credprovider + 3.0 + + \ No newline at end of file diff --git a/eng/pipelines/aggregate-reports.yml b/eng/pipelines/aggregate-reports.yml index 4426985cbc5f..51d88185149f 100644 --- a/eng/pipelines/aggregate-reports.yml +++ b/eng/pipelines/aggregate-reports.yml @@ -43,6 +43,9 @@ extends: parameters: JobType: 'Reporting' + # Authenticate with Azure Artifacts + - template: /eng/pipelines/templates/steps/maven-authenticate.yml + # TODO (vcolin7): Evaluate if we can avoid separating the Cosmos Spark connectors and Java 7 libraries from the rest for this. See: https://github.com/Azure/azure-sdk-for-java/issues/38283. - task: Maven@4 displayName: 'Build all libraries that support Java $(JavaBuildVersion)' @@ -55,8 +58,6 @@ extends: jdkArchitectureOption: 'x64' publishJUnitResults: false goals: 'clean install' - env: - SYSTEM_ACCESSTOKEN: $(System.AccessToken) - task: Maven@4 displayName: 'Build remaining libraries with Java $(FallbackJavaBuildVersion)' @@ -69,8 +70,6 @@ extends: jdkArchitectureOption: 'x64' publishJUnitResults: false goals: 'clean install' - env: - SYSTEM_ACCESSTOKEN: $(System.AccessToken) - pwsh: | New-Item eng/bomgenerator/inputdir -ItemType directory @@ -90,8 +89,6 @@ extends: jdkArchitectureOption: 'x64' publishJUnitResults: false goals: 'clean package' - env: - SYSTEM_ACCESSTOKEN: $(System.AccessToken) # Generate the pom file with all the modules required for creating an aggregate code coverage report - task: PythonScript@0 @@ -112,8 +109,6 @@ extends: jdkArchitectureOption: 'x64' publishJUnitResults: false goals: 'javadoc:aggregate' - env: - SYSTEM_ACCESSTOKEN: $(System.AccessToken) - pwsh: | $(Build.SourcesDirectory)/eng/DependencyGraph/gen-dep-graph-data.ps1 diff --git a/eng/pipelines/code-quality-reports.yml b/eng/pipelines/code-quality-reports.yml index e1ccc57224b4..551a561c20c5 100644 --- a/eng/pipelines/code-quality-reports.yml +++ b/eng/pipelines/code-quality-reports.yml @@ -63,6 +63,9 @@ extends: parameters: JobType: 'linting' + # Authenticate with Azure Artifacts + - template: /eng/pipelines/templates/steps/maven-authenticate.yml + # The only time generate_from_source_pom.py should be used to set the SparseCheckoutDirectories # is for FromSource runs or, in the case of code quality reports, a run that needs to build # everything using the latest source. It'll greedily set any service directories as it figures @@ -100,8 +103,6 @@ extends: jdkVersionOption: $(JavaBuildVersion) jdkArchitectureOption: 'x64' publishJUnitResults: false - env: - SYSTEM_ACCESSTOKEN: $(System.AccessToken) condition: and(succeeded(), eq(variables['RunLinting'], 'true')) - task: PowerShell@2 diff --git a/eng/pipelines/templates/jobs/build-validate-pom.yml b/eng/pipelines/templates/jobs/build-validate-pom.yml index 24a2380a298f..f996e655866b 100644 --- a/eng/pipelines/templates/jobs/build-validate-pom.yml +++ b/eng/pipelines/templates/jobs/build-validate-pom.yml @@ -52,6 +52,9 @@ jobs: parameters: JobType: 'Build and Validate' + # Authenticate with Azure Artifacts + - template: /eng/pipelines/templates/steps/maven-authenticate.yml + - ${{ each artifact in parameters.Artifacts }}: - task: Maven@4 displayName: 'Prepare POM: ${{artifact.groupId}}:${{artifact.name}}' @@ -67,8 +70,6 @@ jobs: jdkVersionOption: $(JavaBuildVersion) jdkArchitectureOption: 'x64' publishJUnitResults: false - env: - SYSTEM_ACCESSTOKEN: $(System.AccessToken) - task: PowerShell@2 displayName: 'Copy artifacts to staging' diff --git a/eng/pipelines/templates/jobs/ci.yml b/eng/pipelines/templates/jobs/ci.yml index 7068d04ba510..b4b19ab853e1 100644 --- a/eng/pipelines/templates/jobs/ci.yml +++ b/eng/pipelines/templates/jobs/ci.yml @@ -115,6 +115,9 @@ jobs: ServiceDirectory: ${{parameters.ServiceDirectory}} ExcludePaths: ${{parameters.ExcludePaths}} + # Authenticate with Azure Artifacts + - template: /eng/pipelines/templates/steps/maven-authenticate.yml + - task: UsePythonVersion@0 displayName: 'Use Python $(PythonVersion)' inputs: @@ -210,8 +213,6 @@ jobs: jdkVersionOption: ${{ parameters.JavaBuildVersion }} jdkArchitectureOption: 'x64' publishJUnitResults: false - env: - SYSTEM_ACCESSTOKEN: $(System.AccessToken) - task: PowerShell@2 displayName: 'Verify Required Maven Artifacts' diff --git a/eng/pipelines/templates/stages/archetype-sdk-client-patch.yml b/eng/pipelines/templates/stages/archetype-sdk-client-patch.yml index 65d28cef5ead..5d32208c69fd 100644 --- a/eng/pipelines/templates/stages/archetype-sdk-client-patch.yml +++ b/eng/pipelines/templates/stages/archetype-sdk-client-patch.yml @@ -100,6 +100,9 @@ extends: python -m pip install markdown2 BeautifulSoup4 displayName: 'pip install markdown2 and BeautifulSoup4' + # Authenticate with Azure Artifacts + - template: /eng/pipelines/templates/steps/maven-authenticate.yml + # Save the Package Properties # # ServiceDirectories variable is a plain, comma separated list of ServiceDirectories that is output by the @@ -135,8 +138,6 @@ extends: jdkVersionOption: ${{ parameters.JavaBuildVersion }} jdkArchitectureOption: 'x64' publishJUnitResults: false - env: - SYSTEM_ACCESSTOKEN: $(System.AccessToken) - task: PowerShell@2 displayName: 'Verify Required Maven Artifacts' diff --git a/eng/pipelines/templates/steps/build-and-test-native.yml b/eng/pipelines/templates/steps/build-and-test-native.yml index 0a0a33df8edc..4111f02d04dc 100644 --- a/eng/pipelines/templates/steps/build-and-test-native.yml +++ b/eng/pipelines/templates/steps/build-and-test-native.yml @@ -31,6 +31,9 @@ parameters: default: 'com.azure.resourcemanager:azure-resourcemanager-samples' steps: + # Authenticate with Azure Artifacts + - template: /eng/pipelines/templates/steps/maven-authenticate.yml + - task: Maven@4 displayName: 'Build for non-From Source run' inputs: @@ -42,7 +45,6 @@ steps: publishJUnitResults: false goals: 'install' env: - SYSTEM_ACCESSTOKEN: $(System.AccessToken) ${{ insert }}: ${{ parameters.TestEnvVars }} condition: and(succeeded(), ne(variables['TestFromSource'], 'true')) @@ -57,7 +59,6 @@ steps: publishJUnitResults: false goals: ${{ parameters.TestGoals }} env: - SYSTEM_ACCESSTOKEN: $(System.AccessToken) ${{ insert }}: ${{ parameters.TestEnvVars }} # we want to run this when TestFromSource isn't true condition: and(succeeded(), ne(variables['TestFromSource'], 'true')) @@ -98,7 +99,6 @@ steps: jdkDirectory: $(Agent.BuildDirectory)/graalvm-22.3.0 publishJUnitResults: false env: - SYSTEM_ACCESSTOKEN: $(System.AccessToken) ${{ insert }}: ${{ parameters.TestEnvVars }} condition: and(succeeded(), eq(variables['TestFromSource'], 'true')) @@ -122,7 +122,6 @@ steps: # compiled and installed in the previous task, this tasks only runs tests. goals: ${{ parameters.TestGoals }} env: - SYSTEM_ACCESSTOKEN: $(System.AccessToken) ${{ insert }}: ${{ parameters.TestEnvVars }} condition: and(succeeded(), eq(variables['TestFromSource'], 'true')) diff --git a/eng/pipelines/templates/steps/build-and-test.yml b/eng/pipelines/templates/steps/build-and-test.yml index f46c595fd857..995797ccd391 100644 --- a/eng/pipelines/templates/steps/build-and-test.yml +++ b/eng/pipelines/templates/steps/build-and-test.yml @@ -46,6 +46,9 @@ parameters: default: [ ] steps: + # Authenticate with Azure Artifacts + - template: /eng/pipelines/templates/steps/maven-authenticate.yml + - task: Maven@4 ${{ if eq(parameters.TestVersionSupport, 'true') }}: displayName: '${{ parameters.VersionOverride }} - Build for non-From Source run' @@ -61,7 +64,6 @@ steps: publishJUnitResults: false goals: 'install' env: - SYSTEM_ACCESSTOKEN: $(System.AccessToken) VERSION_OVERRIDE_TESTS: ${{ parameters.TestVersionSupport }} condition: and(succeeded(), ne(variables['TestFromSource'], 'true'), ne(variables['FirstTestOverrideRan'], 'true')) @@ -84,7 +86,6 @@ steps: publishJUnitResults: false goals: 'clean install' env: - SYSTEM_ACCESSTOKEN: $(System.AccessToken) VERSION_OVERRIDE_TESTS: ${{ parameters.TestVersionSupport }} condition: and(succeeded(), eq(variables['TestVersionSupport'], 'true')) @@ -123,7 +124,6 @@ steps: env: JAVA_HOME: $(PowerShellJavaHome) MAVEN_OPTS: '$(MemoryOptions) $(LoggingOptions)' - SYSTEM_ACCESSTOKEN: $(System.AccessToken) ${{ insert }}: ${{ parameters.TestEnvVars }} - ${{ else }}: @@ -143,7 +143,6 @@ steps: publishJUnitResults: false goals: ${{ parameters.TestGoals }} env: - SYSTEM_ACCESSTOKEN: $(System.AccessToken) ${{ insert }}: ${{ parameters.TestEnvVars }} # Generate the pom file with all the modules required for creating an aggregate code coverage report @@ -165,8 +164,6 @@ steps: jdkVersionOption: $(JavaTestVersion) jdkArchitectureOption: 'x64' goals: jacoco:report-aggregate - env: - SYSTEM_ACCESSTOKEN: $(System.AccessToken) condition: eq(variables['RunAggregateReports'], 'true') - task: Maven@4 @@ -185,8 +182,6 @@ steps: jdkVersionOption: $(JavaTestVersion) jdkArchitectureOption: 'x64' publishJUnitResults: false - env: - SYSTEM_ACCESSTOKEN: $(System.AccessToken) condition: and(succeeded(), eq(variables['TestFromSource'], 'true')) - ${{ parameters.PreTestRunSteps }} @@ -221,7 +216,6 @@ steps: # task above JAVA_HOME: $(PowerShellJavaHome) MAVEN_OPTS: '$(MemoryOptions) $(LoggingOptions)' - SYSTEM_ACCESSTOKEN: $(System.AccessToken) ${{ insert }}: ${{ parameters.TestEnvVars }} - ${{ else }}: @@ -246,7 +240,6 @@ steps: # compiled and installed in the previous task, this tasks only runs tests. goals: ${{ parameters.TestGoals }} env: - SYSTEM_ACCESSTOKEN: $(System.AccessToken) ${{ insert }}: ${{ parameters.TestEnvVars }} condition: and(succeeded(), eq(variables['TestFromSource'], 'true')) diff --git a/eng/pipelines/templates/steps/maven-authenticate.yml b/eng/pipelines/templates/steps/maven-authenticate.yml new file mode 100644 index 000000000000..8b06ea451776 --- /dev/null +++ b/eng/pipelines/templates/steps/maven-authenticate.yml @@ -0,0 +1,12 @@ +steps: + # Copy settings.xml to default Maven location + - pwsh: | + New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.m2" | Out-Null + Copy-Item -Path "$(Build.SourcesDirectory)/eng/settings.xml" -Destination "$env:USERPROFILE\.m2\settings.xml" + displayName: 'Setup Maven settings' + + # Authenticate with Azure Artifacts feeds + - task: MavenAuthenticate@0 + displayName: 'Maven Authenticate' + inputs: + artifactsFeeds: 'central,azure-sdk-for-java' diff --git a/eng/pipelines/templates/steps/run-and-validate-linting.yml b/eng/pipelines/templates/steps/run-and-validate-linting.yml index 15c8f4365d02..c0e644bd9662 100644 --- a/eng/pipelines/templates/steps/run-and-validate-linting.yml +++ b/eng/pipelines/templates/steps/run-and-validate-linting.yml @@ -19,6 +19,9 @@ parameters: default: client steps: + # Authenticate with Azure Artifacts + - template: /eng/pipelines/templates/steps/maven-authenticate.yml + - task: Maven@4 ${{ if ne(parameters.SDKType, 'client') }}: displayName: 'Build and Run SpotBugs and Checkstyle' @@ -36,8 +39,6 @@ steps: jdkVersionOption: ${{ parameters.JavaBuildVersion }} jdkArchitectureOption: 'x64' publishJUnitResults: false - env: - SYSTEM_ACCESSTOKEN: $(System.AccessToken) continueOnError: ${{ parameters.ContinueOnError }} condition: or(eq(coalesce(variables['IsLatestNonLtsJdk'], true), true), and(${{ parameters.RunLinting }}, succeeded())) @@ -68,7 +69,5 @@ steps: goals: 'javadoc:jar' ${{ else }}: goals: 'javadoc:jar codesnippet:verify-codesnippet spotless:check' - env: - SYSTEM_ACCESSTOKEN: $(System.AccessToken) continueOnError: ${{ parameters.ContinueOnError }} condition: or(eq(coalesce(variables['IsLatestNonLtsJdk'], true), true), and(${{ parameters.RunLinting }}, succeeded())) diff --git a/eng/repo-docs/docms/daily.update.setting.xml b/eng/repo-docs/docms/daily.update.setting.xml index f30128b6d146..1979c34115a0 100644 --- a/eng/repo-docs/docms/daily.update.setting.xml +++ b/eng/repo-docs/docms/daily.update.setting.xml @@ -10,7 +10,7 @@ azure-sdk-for-java - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 true diff --git a/eng/scripts/setup-dev.ps1 b/eng/scripts/setup-dev.ps1 new file mode 100644 index 000000000000..d600b08d8c64 --- /dev/null +++ b/eng/scripts/setup-dev.ps1 @@ -0,0 +1,26 @@ +# eng/scripts/setup-dev.ps1 +# One-time setup script for Azure SDK for Java development +$settingsSource = Join-Path $PSScriptRoot "..\settings.xml" +$settingsTarget = Join-Path $env:USERPROFILE ".m2\settings.xml" + +# Ensure .m2 directory exists +$m2Dir = Join-Path $env:USERPROFILE ".m2" +if (-not (Test-Path $m2Dir)) { + New-Item -ItemType Directory -Path $m2Dir | Out-Null +} + +# Copy settings.xml if not present +if (-not (Test-Path $settingsTarget)) { + Copy-Item $settingsSource $settingsTarget + Write-Host "✓ Copied settings.xml to $settingsTarget" +} else { + Write-Host "⚠ settings.xml already exists at $settingsTarget" + $response = Read-Host "Overwrite? (y/N)" + if ($response -eq 'y') { + Copy-Item $settingsSource $settingsTarget -Force + Write-Host "✓ Overwritten settings.xml" + } +} + +Write-Host "" +Write-Host "Setup complete! You can now run 'mvn' commands." diff --git a/eng/settings.xml b/eng/settings.xml index 05c276710876..08bd23cc95ff 100644 --- a/eng/settings.xml +++ b/eng/settings.xml @@ -1,24 +1,12 @@ - - - central - AzureDevOps - ${env.SYSTEM_ACCESSTOKEN} - - - azure-sdk-for-java - AzureDevOps - ${env.SYSTEM_ACCESSTOKEN} - - central Azure Artifacts Maven Mirror - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 *,!confluent diff --git a/sdk/ai/azure-ai-projects/pom.xml b/sdk/ai/azure-ai-projects/pom.xml index 96664c1bd4fb..42249333fe49 100644 --- a/sdk/ai/azure-ai-projects/pom.xml +++ b/sdk/ai/azure-ai-projects/pom.xml @@ -118,7 +118,7 @@ Code generated by Microsoft (R) TypeSpec Code Generator. azure-sdk-for-java - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 true diff --git a/sdk/parents/azure-client-sdk-parent-v2/pom.xml b/sdk/parents/azure-client-sdk-parent-v2/pom.xml index ba5cdb87572c..197f39d6ed63 100644 --- a/sdk/parents/azure-client-sdk-parent-v2/pom.xml +++ b/sdk/parents/azure-client-sdk-parent-v2/pom.xml @@ -43,14 +43,14 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -58,7 +58,7 @@ azure-sdk-for-java Azure SDK for Java - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 azure-java-build-docs diff --git a/sdk/parents/azure-client-sdk-parent/pom.xml b/sdk/parents/azure-client-sdk-parent/pom.xml index ee3831387137..afd5efc8fca9 100644 --- a/sdk/parents/azure-client-sdk-parent/pom.xml +++ b/sdk/parents/azure-client-sdk-parent/pom.xml @@ -43,14 +43,14 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -58,7 +58,7 @@ azure-sdk-for-java Azure SDK for Java - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 azure-java-build-docs diff --git a/sdk/parents/azure-sdk-parent/pom.xml b/sdk/parents/azure-sdk-parent/pom.xml index 196ff7d51991..69d0c19e8c94 100644 --- a/sdk/parents/azure-sdk-parent/pom.xml +++ b/sdk/parents/azure-sdk-parent/pom.xml @@ -35,14 +35,14 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/parents/clientcore-parent/pom.xml b/sdk/parents/clientcore-parent/pom.xml index 9a13498c1967..db18477fa35c 100644 --- a/sdk/parents/clientcore-parent/pom.xml +++ b/sdk/parents/clientcore-parent/pom.xml @@ -32,14 +32,14 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -47,7 +47,7 @@ azure-sdk-for-java Azure SDK for Java - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 azure-java-build-docs diff --git a/sdk/spring/spring-cloud-azure-starter-active-directory-b2c/pom.xml b/sdk/spring/spring-cloud-azure-starter-active-directory-b2c/pom.xml index cd4bf9c8b098..5add9d27333d 100644 --- a/sdk/spring/spring-cloud-azure-starter-active-directory-b2c/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-active-directory-b2c/pom.xml @@ -50,7 +50,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -59,7 +59,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -68,7 +68,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-active-directory/pom.xml b/sdk/spring/spring-cloud-azure-starter-active-directory/pom.xml index fa5034c7bd3a..08488dd1ca2e 100644 --- a/sdk/spring/spring-cloud-azure-starter-active-directory/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-active-directory/pom.xml @@ -49,7 +49,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -58,7 +58,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -67,7 +67,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-actuator/pom.xml b/sdk/spring/spring-cloud-azure-starter-actuator/pom.xml index be760ff35a0b..bd49b9573f25 100644 --- a/sdk/spring/spring-cloud-azure-starter-actuator/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-actuator/pom.xml @@ -49,7 +49,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -58,7 +58,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -67,7 +67,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-appconfiguration-config/pom.xml b/sdk/spring/spring-cloud-azure-starter-appconfiguration-config/pom.xml index 787adddbb8de..9bf8be5945f8 100644 --- a/sdk/spring/spring-cloud-azure-starter-appconfiguration-config/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-appconfiguration-config/pom.xml @@ -48,7 +48,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -57,7 +57,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -66,7 +66,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-appconfiguration/pom.xml b/sdk/spring/spring-cloud-azure-starter-appconfiguration/pom.xml index b5d62041e750..57619e22c0d2 100644 --- a/sdk/spring/spring-cloud-azure-starter-appconfiguration/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-appconfiguration/pom.xml @@ -49,7 +49,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -58,7 +58,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -67,7 +67,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-cosmos/pom.xml b/sdk/spring/spring-cloud-azure-starter-cosmos/pom.xml index 10d478f188cd..d96a34e4c251 100644 --- a/sdk/spring/spring-cloud-azure-starter-cosmos/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-cosmos/pom.xml @@ -49,7 +49,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -58,7 +58,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -67,7 +67,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-data-cosmos/pom.xml b/sdk/spring/spring-cloud-azure-starter-data-cosmos/pom.xml index 7995e8c1d22c..80021b218dae 100644 --- a/sdk/spring/spring-cloud-azure-starter-data-cosmos/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-data-cosmos/pom.xml @@ -49,7 +49,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -58,7 +58,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -67,7 +67,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-data-redis-lettuce/pom.xml b/sdk/spring/spring-cloud-azure-starter-data-redis-lettuce/pom.xml index d1e72b52e7b6..f423b2995acf 100644 --- a/sdk/spring/spring-cloud-azure-starter-data-redis-lettuce/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-data-redis-lettuce/pom.xml @@ -49,7 +49,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -58,7 +58,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -67,7 +67,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-eventgrid/pom.xml b/sdk/spring/spring-cloud-azure-starter-eventgrid/pom.xml index 47fe7401bc8e..6fd4bfd4a617 100644 --- a/sdk/spring/spring-cloud-azure-starter-eventgrid/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-eventgrid/pom.xml @@ -50,7 +50,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -59,7 +59,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -68,7 +68,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-eventhubs/pom.xml b/sdk/spring/spring-cloud-azure-starter-eventhubs/pom.xml index 84d0df465e23..bbbdee2f0d9d 100644 --- a/sdk/spring/spring-cloud-azure-starter-eventhubs/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-eventhubs/pom.xml @@ -50,7 +50,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -59,7 +59,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -68,7 +68,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-integration-eventhubs/pom.xml b/sdk/spring/spring-cloud-azure-starter-integration-eventhubs/pom.xml index 8c6ca9d334ee..4e4fee5607fc 100644 --- a/sdk/spring/spring-cloud-azure-starter-integration-eventhubs/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-integration-eventhubs/pom.xml @@ -50,7 +50,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -59,7 +59,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -68,7 +68,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-integration-servicebus/pom.xml b/sdk/spring/spring-cloud-azure-starter-integration-servicebus/pom.xml index 491a0c2fd115..9beb90ee9589 100644 --- a/sdk/spring/spring-cloud-azure-starter-integration-servicebus/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-integration-servicebus/pom.xml @@ -50,7 +50,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -59,7 +59,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -68,7 +68,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-integration-storage-queue/pom.xml b/sdk/spring/spring-cloud-azure-starter-integration-storage-queue/pom.xml index 24509ab326d0..ddb183f5bf54 100644 --- a/sdk/spring/spring-cloud-azure-starter-integration-storage-queue/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-integration-storage-queue/pom.xml @@ -53,7 +53,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -62,7 +62,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -71,7 +71,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-jdbc-mysql/pom.xml b/sdk/spring/spring-cloud-azure-starter-jdbc-mysql/pom.xml index 60d5c277ef69..3b97c365c3f3 100644 --- a/sdk/spring/spring-cloud-azure-starter-jdbc-mysql/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-jdbc-mysql/pom.xml @@ -49,7 +49,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -58,7 +58,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -67,7 +67,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-jdbc-postgresql/pom.xml b/sdk/spring/spring-cloud-azure-starter-jdbc-postgresql/pom.xml index 2c9764b99e1e..b6dfeff01faa 100644 --- a/sdk/spring/spring-cloud-azure-starter-jdbc-postgresql/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-jdbc-postgresql/pom.xml @@ -49,7 +49,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -58,7 +58,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -67,7 +67,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-keyvault-certificates/pom.xml b/sdk/spring/spring-cloud-azure-starter-keyvault-certificates/pom.xml index 983873bab5b6..7603e3d0d7e1 100644 --- a/sdk/spring/spring-cloud-azure-starter-keyvault-certificates/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-keyvault-certificates/pom.xml @@ -49,7 +49,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -58,7 +58,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -67,7 +67,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-keyvault-jca/pom.xml b/sdk/spring/spring-cloud-azure-starter-keyvault-jca/pom.xml index 4e810b653d44..cfff1719311a 100644 --- a/sdk/spring/spring-cloud-azure-starter-keyvault-jca/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-keyvault-jca/pom.xml @@ -49,7 +49,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -58,7 +58,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -67,7 +67,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-keyvault-secrets/pom.xml b/sdk/spring/spring-cloud-azure-starter-keyvault-secrets/pom.xml index a216f2ed4b9e..e0556826a01e 100644 --- a/sdk/spring/spring-cloud-azure-starter-keyvault-secrets/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-keyvault-secrets/pom.xml @@ -49,7 +49,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -58,7 +58,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -67,7 +67,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-keyvault/pom.xml b/sdk/spring/spring-cloud-azure-starter-keyvault/pom.xml index 9f12b84c4783..ebb0801911e5 100644 --- a/sdk/spring/spring-cloud-azure-starter-keyvault/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-keyvault/pom.xml @@ -49,7 +49,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -58,7 +58,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -67,7 +67,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-monitor/pom.xml b/sdk/spring/spring-cloud-azure-starter-monitor/pom.xml index c10ed7a9e6b1..0316bd90c797 100644 --- a/sdk/spring/spring-cloud-azure-starter-monitor/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-monitor/pom.xml @@ -39,7 +39,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -48,7 +48,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -57,7 +57,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-servicebus-jms/pom.xml b/sdk/spring/spring-cloud-azure-starter-servicebus-jms/pom.xml index 6d7ead48c708..461f76320fbe 100644 --- a/sdk/spring/spring-cloud-azure-starter-servicebus-jms/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-servicebus-jms/pom.xml @@ -49,7 +49,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -58,7 +58,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -67,7 +67,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-servicebus/pom.xml b/sdk/spring/spring-cloud-azure-starter-servicebus/pom.xml index 15d608afb755..b66b5d378c02 100644 --- a/sdk/spring/spring-cloud-azure-starter-servicebus/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-servicebus/pom.xml @@ -50,7 +50,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -59,7 +59,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -68,7 +68,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-storage-blob/pom.xml b/sdk/spring/spring-cloud-azure-starter-storage-blob/pom.xml index 3edea0d890c7..17101a4947be 100644 --- a/sdk/spring/spring-cloud-azure-starter-storage-blob/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-storage-blob/pom.xml @@ -49,7 +49,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -58,7 +58,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -67,7 +67,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-storage-file-share/pom.xml b/sdk/spring/spring-cloud-azure-starter-storage-file-share/pom.xml index 5f5b21852af2..1f5f984bf810 100644 --- a/sdk/spring/spring-cloud-azure-starter-storage-file-share/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-storage-file-share/pom.xml @@ -49,7 +49,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -58,7 +58,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -67,7 +67,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-storage-queue/pom.xml b/sdk/spring/spring-cloud-azure-starter-storage-queue/pom.xml index ac10dcc62a4f..d69656e3d5a9 100644 --- a/sdk/spring/spring-cloud-azure-starter-storage-queue/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-storage-queue/pom.xml @@ -53,7 +53,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -62,7 +62,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -71,7 +71,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-storage/pom.xml b/sdk/spring/spring-cloud-azure-starter-storage/pom.xml index 628c8868cf3c..a63193d4027a 100644 --- a/sdk/spring/spring-cloud-azure-starter-storage/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-storage/pom.xml @@ -49,7 +49,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -58,7 +58,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -67,7 +67,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-stream-eventhubs/pom.xml b/sdk/spring/spring-cloud-azure-starter-stream-eventhubs/pom.xml index acb280bc50aa..7b8d86d53c84 100644 --- a/sdk/spring/spring-cloud-azure-starter-stream-eventhubs/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-stream-eventhubs/pom.xml @@ -50,7 +50,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -59,7 +59,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -68,7 +68,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter-stream-servicebus/pom.xml b/sdk/spring/spring-cloud-azure-starter-stream-servicebus/pom.xml index 88ce054ae0e2..463f5bfdf5f9 100644 --- a/sdk/spring/spring-cloud-azure-starter-stream-servicebus/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter-stream-servicebus/pom.xml @@ -50,7 +50,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -59,7 +59,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -68,7 +68,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 diff --git a/sdk/spring/spring-cloud-azure-starter/pom.xml b/sdk/spring/spring-cloud-azure-starter/pom.xml index 6bdfb8e4a972..5576898202ab 100644 --- a/sdk/spring/spring-cloud-azure-starter/pom.xml +++ b/sdk/spring/spring-cloud-azure-starter/pom.xml @@ -49,7 +49,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -58,7 +58,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 @@ -67,7 +67,7 @@ central - https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1 + https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 From fb1dbf96856322f0402108deb53732808b98c6a6 Mon Sep 17 00:00:00 2001 From: Ray Chen Date: Wed, 11 Feb 2026 14:23:00 -0800 Subject: [PATCH 16/19] Updated env name --- eng/pipelines/templates/steps/maven-authenticate.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/eng/pipelines/templates/steps/maven-authenticate.yml b/eng/pipelines/templates/steps/maven-authenticate.yml index 8b06ea451776..cd7eef0e845e 100644 --- a/eng/pipelines/templates/steps/maven-authenticate.yml +++ b/eng/pipelines/templates/steps/maven-authenticate.yml @@ -1,8 +1,9 @@ steps: # Copy settings.xml to default Maven location - pwsh: | - New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.m2" | Out-Null - Copy-Item -Path "$(Build.SourcesDirectory)/eng/settings.xml" -Destination "$env:USERPROFILE\.m2\settings.xml" + $m2Dir = if ($env:USERPROFILE) { "$env:USERPROFILE\.m2" } else { "$HOME/.m2" } + New-Item -ItemType Directory -Force -Path $m2Dir | Out-Null + Copy-Item -Path "$(Build.SourcesDirectory)/eng/settings.xml" -Destination "$m2Dir/settings.xml" displayName: 'Setup Maven settings' # Authenticate with Azure Artifacts feeds From a6f41294119d625f0eaa8e60eb942bdefb22718b Mon Sep 17 00:00:00 2001 From: Ray Chen Date: Wed, 11 Feb 2026 15:07:20 -0800 Subject: [PATCH 17/19] updated dep version --- .mvn/extensions.xml | 2 +- eng/scripts/setup-dev.ps1 | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.mvn/extensions.xml b/.mvn/extensions.xml index 62f0bbf0e12d..af8717945ea2 100644 --- a/.mvn/extensions.xml +++ b/.mvn/extensions.xml @@ -3,6 +3,6 @@ com.microsoft.azure artifacts-maven-credprovider - 3.0 + 3.0.0 \ No newline at end of file diff --git a/eng/scripts/setup-dev.ps1 b/eng/scripts/setup-dev.ps1 index d600b08d8c64..acf6f07b0e05 100644 --- a/eng/scripts/setup-dev.ps1 +++ b/eng/scripts/setup-dev.ps1 @@ -1,10 +1,11 @@ # eng/scripts/setup-dev.ps1 # One-time setup script for Azure SDK for Java development + $settingsSource = Join-Path $PSScriptRoot "..\settings.xml" -$settingsTarget = Join-Path $env:USERPROFILE ".m2\settings.xml" +$m2Dir = if ($env:USERPROFILE) { Join-Path $env:USERPROFILE ".m2" } else { Join-Path $HOME ".m2" } +$settingsTarget = Join-Path $m2Dir "settings.xml" # Ensure .m2 directory exists -$m2Dir = Join-Path $env:USERPROFILE ".m2" if (-not (Test-Path $m2Dir)) { New-Item -ItemType Directory -Path $m2Dir | Out-Null } From 4fac2ddf515ab3537b3db38090f3b06abf71cdcb Mon Sep 17 00:00:00 2001 From: Ray Chen Date: Wed, 11 Feb 2026 15:45:40 -0800 Subject: [PATCH 18/19] use feed name --- eng/pipelines/templates/steps/maven-authenticate.yml | 2 +- eng/pipelines/templates/steps/post-job-cleanup.yml | 4 ++-- eng/pipelines/templates/variables/globals.yml | 2 +- eng/settings.xml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/eng/pipelines/templates/steps/maven-authenticate.yml b/eng/pipelines/templates/steps/maven-authenticate.yml index cd7eef0e845e..7185dccf22c5 100644 --- a/eng/pipelines/templates/steps/maven-authenticate.yml +++ b/eng/pipelines/templates/steps/maven-authenticate.yml @@ -10,4 +10,4 @@ steps: - task: MavenAuthenticate@0 displayName: 'Maven Authenticate' inputs: - artifactsFeeds: 'central,azure-sdk-for-java' + artifactsFeeds: 'test-maven-feed' diff --git a/eng/pipelines/templates/steps/post-job-cleanup.yml b/eng/pipelines/templates/steps/post-job-cleanup.yml index 95145e0e54ad..ed0ded5a866d 100644 --- a/eng/pipelines/templates/steps/post-job-cleanup.yml +++ b/eng/pipelines/templates/steps/post-job-cleanup.yml @@ -14,7 +14,7 @@ steps: displayName: 'Clean after tests' inputs: mavenPomFile: pom.xml - options: '$(DefaultTestOptions) -T 1C' + options: '$(DefaultTestOptions) -T 1C -o' mavenOptions: '$(MemoryOptions) $(LoggingOptions)' javaHomeOption: 'JDKVersion' jdkVersionOption: $(JavaTestVersion) @@ -27,7 +27,7 @@ steps: displayName: 'Clean after tests for From Source run' inputs: mavenPomFile: ClientFromSourcePom.xml - options: $(DefaultTestOptions) -amd -T 1C + options: $(DefaultTestOptions) -amd -T 1C -o mavenOptions: '$(MemoryOptions) $(LoggingOptions)' javaHomeOption: 'JDKVersion' jdkVersionOption: $(JavaTestVersion) diff --git a/eng/pipelines/templates/variables/globals.yml b/eng/pipelines/templates/variables/globals.yml index 674aaebc4750..cbd64a9a98d1 100644 --- a/eng/pipelines/templates/variables/globals.yml +++ b/eng/pipelines/templates/variables/globals.yml @@ -26,7 +26,7 @@ variables: # See https://github.com/actions/virtual-environments/issues/1499 for more info about the wagon options # If reports about Maven dependency downloads become more common investigate re-introducing "-Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false", or other iterations of the configurations. WagonOptions: '-Dmaven.wagon.httpconnectionManager.ttlSeconds=60 -Dmaven.wagon.http.pool=false' - DefaultOptions: '-Dmaven.repo.local=$(MAVEN_CACHE_FOLDER) --batch-mode --fail-at-end --settings eng/settings.xml $(WagonOptions)' + DefaultOptions: '-Dmaven.repo.local=$(MAVEN_CACHE_FOLDER) --batch-mode --fail-at-end $(WagonOptions)' LoggingOptions: '-Dorg.slf4j.simpleLogger.defaultLogLevel=$(MavenLogLevel) -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn' MemoryOptions: '-Xmx4096m' DefaultSkipOptions: '-Dgpg.skip -Dmaven.javadoc.skip=true -Dcodesnippet.skip=true -Dspotbugs.skip=true -Dcheckstyle.skip=true -Drevapi.skip=true -DtrimStackTrace=false -Dspotless.apply.skip=true -Dspotless.check.skip=true' diff --git a/eng/settings.xml b/eng/settings.xml index 08bd23cc95ff..f9df105d4887 100644 --- a/eng/settings.xml +++ b/eng/settings.xml @@ -4,7 +4,7 @@ - central + test-maven-feed Azure Artifacts Maven Mirror https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1 *,!confluent From 5247e5552fedb190b3cc4ee39f871f5c6a7a9238 Mon Sep 17 00:00:00 2001 From: Ray Chen Date: Wed, 11 Feb 2026 16:57:53 -0800 Subject: [PATCH 19/19] update test step --- eng/pipelines/templates/steps/post-job-cleanup.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/pipelines/templates/steps/post-job-cleanup.yml b/eng/pipelines/templates/steps/post-job-cleanup.yml index ed0ded5a866d..95145e0e54ad 100644 --- a/eng/pipelines/templates/steps/post-job-cleanup.yml +++ b/eng/pipelines/templates/steps/post-job-cleanup.yml @@ -14,7 +14,7 @@ steps: displayName: 'Clean after tests' inputs: mavenPomFile: pom.xml - options: '$(DefaultTestOptions) -T 1C -o' + options: '$(DefaultTestOptions) -T 1C' mavenOptions: '$(MemoryOptions) $(LoggingOptions)' javaHomeOption: 'JDKVersion' jdkVersionOption: $(JavaTestVersion) @@ -27,7 +27,7 @@ steps: displayName: 'Clean after tests for From Source run' inputs: mavenPomFile: ClientFromSourcePom.xml - options: $(DefaultTestOptions) -amd -T 1C -o + options: $(DefaultTestOptions) -amd -T 1C mavenOptions: '$(MemoryOptions) $(LoggingOptions)' javaHomeOption: 'JDKVersion' jdkVersionOption: $(JavaTestVersion)