diff --git a/.mvn/extensions.xml b/.mvn/extensions.xml
new file mode 100644
index 000000000000..af8717945ea2
--- /dev/null
+++ b/.mvn/extensions.xml
@@ -0,0 +1,8 @@
+
+
+ com.microsoft.azure
+ artifacts-maven-credprovider
+ 3.0.0
+
+
\ No newline at end of file
diff --git a/eng/pipelines/aggregate-reports.yml b/eng/pipelines/aggregate-reports.yml
index 371c5fa33177..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)'
diff --git a/eng/pipelines/code-quality-reports.yml b/eng/pipelines/code-quality-reports.yml
index b770b633043f..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
diff --git a/eng/pipelines/templates/jobs/build-validate-pom.yml b/eng/pipelines/templates/jobs/build-validate-pom.yml
index ebda5aea292d..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}}'
diff --git a/eng/pipelines/templates/jobs/ci.yml b/eng/pipelines/templates/jobs/ci.yml
index 6af7b0c042c0..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:
diff --git a/eng/pipelines/templates/stages/archetype-sdk-client-patch.yml b/eng/pipelines/templates/stages/archetype-sdk-client-patch.yml
index d22601358369..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
diff --git a/eng/pipelines/templates/steps/build-and-test-native.yml b/eng/pipelines/templates/steps/build-and-test-native.yml
index 0f54ebd562fd..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:
@@ -41,7 +44,8 @@ steps:
jdkDirectory: $(Agent.BuildDirectory)/graalvm-22.3.0
publishJUnitResults: false
goals: 'install'
- env: ${{ parameters.TestEnvVars }}
+ env:
+ ${{ insert }}: ${{ parameters.TestEnvVars }}
condition: and(succeeded(), ne(variables['TestFromSource'], 'true'))
- task: Maven@4
@@ -54,7 +58,8 @@ steps:
jdkDirectory: $(Agent.BuildDirectory)/graalvm-22.3.0
publishJUnitResults: false
goals: ${{ parameters.TestGoals }}
- env: ${{ parameters.TestEnvVars }}
+ env:
+ ${{ insert }}: ${{ parameters.TestEnvVars }}
# we want to run this when TestFromSource isn't true
condition: and(succeeded(), ne(variables['TestFromSource'], 'true'))
@@ -93,7 +98,8 @@ steps:
javaHomeOption: 'Path'
jdkDirectory: $(Agent.BuildDirectory)/graalvm-22.3.0
publishJUnitResults: false
- env: ${{ parameters.TestEnvVars }}
+ env:
+ ${{ insert }}: ${{ parameters.TestEnvVars }}
condition: and(succeeded(), eq(variables['TestFromSource'], 'true'))
- task: Maven@4
@@ -115,7 +121,8 @@ 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:
+ ${{ 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 e8a39bb29072..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'
@@ -121,7 +124,6 @@ steps:
env:
JAVA_HOME: $(PowerShellJavaHome)
MAVEN_OPTS: '$(MemoryOptions) $(LoggingOptions)'
- SYSTEM_ACCESSTOKEN: $(System.AccessToken)
${{ insert }}: ${{ parameters.TestEnvVars }}
- ${{ else }}:
@@ -140,7 +142,8 @@ steps:
jdkArchitectureOption: 'x64'
publishJUnitResults: false
goals: ${{ parameters.TestGoals }}
- env: ${{ parameters.TestEnvVars }}
+ env:
+ ${{ insert }}: ${{ parameters.TestEnvVars }}
# Generate the pom file with all the modules required for creating an aggregate code coverage report
- task: PythonScript@0
@@ -213,7 +216,6 @@ steps:
# task above
JAVA_HOME: $(PowerShellJavaHome)
MAVEN_OPTS: '$(MemoryOptions) $(LoggingOptions)'
- SYSTEM_ACCESSTOKEN: $(System.AccessToken)
${{ insert }}: ${{ parameters.TestEnvVars }}
- ${{ else }}:
@@ -237,7 +239,8 @@ 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:
+ ${{ insert }}: ${{ parameters.TestEnvVars }}
condition: and(succeeded(), eq(variables['TestFromSource'], 'true'))
- ${{ if eq(parameters.TestVersionSupport, '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..7185dccf22c5
--- /dev/null
+++ b/eng/pipelines/templates/steps/maven-authenticate.yml
@@ -0,0 +1,13 @@
+steps:
+ # Copy settings.xml to default Maven location
+ - pwsh: |
+ $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
+ - task: MavenAuthenticate@0
+ displayName: 'Maven Authenticate'
+ inputs:
+ artifactsFeeds: 'test-maven-feed'
diff --git a/eng/pipelines/templates/steps/run-and-validate-linting.yml b/eng/pipelines/templates/steps/run-and-validate-linting.yml
index 30b219a8901c..c0e644bd9662 100644
--- a/eng/pipelines/templates/steps/run-and-validate-linting.yml
+++ b/eng/pipelines/templates/steps/run-and-validate-linting.yml
@@ -19,7 +19,9 @@ parameters:
default: client
steps:
- # maven dependency:tree needs to be able to resolve dependencies, so these should be installed.
+ # 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'
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/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..acf6f07b0e05
--- /dev/null
+++ b/eng/scripts/setup-dev.ps1
@@ -0,0 +1,27 @@
+# eng/scripts/setup-dev.ps1
+# One-time setup script for Azure SDK for Java development
+
+$settingsSource = Join-Path $PSScriptRoot "..\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
+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 b1b7cb0d1d0d..f9df105d4887 100644
--- a/eng/settings.xml
+++ b/eng/settings.xml
@@ -1,4 +1,13 @@
+
+
+
+ test-maven-feed
+ Azure Artifacts Maven Mirror
+ 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/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/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/parents/azure-client-sdk-parent-v2/pom.xml b/sdk/parents/azure-client-sdk-parent-v2/pom.xml
index a8ee8c08ff77..197f39d6ed63 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/test-maven-feed/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/test-maven-feed/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/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 680523d726fd..afd5efc8fca9 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/test-maven-feed/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/test-maven-feed/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/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 680717e4f2bd..69d0c19e8c94 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
- https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1
-
- true
-
-
- true
-
+ central
+ https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/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/test-maven-feed/maven/v1
diff --git a/sdk/parents/clientcore-parent/pom.xml b/sdk/parents/clientcore-parent/pom.xml
index 333fe1c6d6aa..db18477fa35c 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/test-maven-feed/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/test-maven-feed/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/test-maven-feed/maven/v1
azure-java-build-docs
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)
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..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
@@ -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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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/pom.xml b/sdk/spring/spring-cloud-azure-starter-active-directory/pom.xml
index 068459a49f9c..08488dd1ca2e 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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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-actuator/pom.xml b/sdk/spring/spring-cloud-azure-starter-actuator/pom.xml
index 76d00f992d23..bd49b9573f25 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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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-appconfiguration-config/pom.xml b/sdk/spring/spring-cloud-azure-starter-appconfiguration-config/pom.xml
index fbc626ad7ffe..9bf8be5945f8 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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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-appconfiguration/pom.xml b/sdk/spring/spring-cloud-azure-starter-appconfiguration/pom.xml
index 4de16b031274..57619e22c0d2 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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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-cosmos/pom.xml b/sdk/spring/spring-cloud-azure-starter-cosmos/pom.xml
index 3fa8a7c49fad..d96a34e4c251 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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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-data-cosmos/pom.xml b/sdk/spring/spring-cloud-azure-starter-data-cosmos/pom.xml
index 86eac0993b7f..80021b218dae 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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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-data-redis-lettuce/pom.xml b/sdk/spring/spring-cloud-azure-starter-data-redis-lettuce/pom.xml
index 4982e3f9cef1..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
@@ -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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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-eventgrid/pom.xml b/sdk/spring/spring-cloud-azure-starter-eventgrid/pom.xml
index 1f6a54bf7e59..6fd4bfd4a617 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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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-eventhubs/pom.xml b/sdk/spring/spring-cloud-azure-starter-eventhubs/pom.xml
index 236675f48dd9..bbbdee2f0d9d 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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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-integration-eventhubs/pom.xml b/sdk/spring/spring-cloud-azure-starter-integration-eventhubs/pom.xml
index 2c212bc04b52..4e4fee5607fc 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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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-integration-servicebus/pom.xml b/sdk/spring/spring-cloud-azure-starter-integration-servicebus/pom.xml
index c1e87552710c..9beb90ee9589 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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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-integration-storage-queue/pom.xml b/sdk/spring/spring-cloud-azure-starter-integration-storage-queue/pom.xml
index 343b6eb4d30e..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
@@ -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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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-jdbc-mysql/pom.xml b/sdk/spring/spring-cloud-azure-starter-jdbc-mysql/pom.xml
index 746708f80148..3b97c365c3f3 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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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-jdbc-postgresql/pom.xml b/sdk/spring/spring-cloud-azure-starter-jdbc-postgresql/pom.xml
index 4b0cf9dd7ca1..b6dfeff01faa 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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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-keyvault-certificates/pom.xml b/sdk/spring/spring-cloud-azure-starter-keyvault-certificates/pom.xml
index 56e5013f2877..7603e3d0d7e1 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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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-keyvault-jca/pom.xml b/sdk/spring/spring-cloud-azure-starter-keyvault-jca/pom.xml
index 2824687428f7..cfff1719311a 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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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-keyvault-secrets/pom.xml b/sdk/spring/spring-cloud-azure-starter-keyvault-secrets/pom.xml
index dbc2e1d38761..e0556826a01e 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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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-keyvault/pom.xml b/sdk/spring/spring-cloud-azure-starter-keyvault/pom.xml
index 63ef743b464d..ebb0801911e5 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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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-monitor/pom.xml b/sdk/spring/spring-cloud-azure-starter-monitor/pom.xml
index 80b2d1781d40..0316bd90c797 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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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-servicebus-jms/pom.xml b/sdk/spring/spring-cloud-azure-starter-servicebus-jms/pom.xml
index 2d4c1aa11191..461f76320fbe 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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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-servicebus/pom.xml b/sdk/spring/spring-cloud-azure-starter-servicebus/pom.xml
index 0faa06cbc75f..b66b5d378c02 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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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-storage-blob/pom.xml b/sdk/spring/spring-cloud-azure-starter-storage-blob/pom.xml
index 936ec5b0b928..17101a4947be 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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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-storage-file-share/pom.xml b/sdk/spring/spring-cloud-azure-starter-storage-file-share/pom.xml
index 5777d6563473..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
@@ -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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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-storage-queue/pom.xml b/sdk/spring/spring-cloud-azure-starter-storage-queue/pom.xml
index c556d291e0d3..d69656e3d5a9 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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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-storage/pom.xml b/sdk/spring/spring-cloud-azure-starter-storage/pom.xml
index 97c507f8df0c..a63193d4027a 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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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-stream-eventhubs/pom.xml b/sdk/spring/spring-cloud-azure-starter-stream-eventhubs/pom.xml
index e2ffa07e9111..7b8d86d53c84 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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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-stream-servicebus/pom.xml b/sdk/spring/spring-cloud-azure-starter-stream-servicebus/pom.xml
index cda8860cea94..463f5bfdf5f9 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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ 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/pom.xml b/sdk/spring/spring-cloud-azure-starter/pom.xml
index 50bfcf6e5e92..5576898202ab 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/test-maven-feed/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/test-maven-feed/maven/v1
+
- ossrh
- Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
- true
- default
+ central
+
+ https://pkgs.dev.azure.com/azure-sdk/public/_packaging/test-maven-feed/maven/v1
+
+
azure-java-build-docs