diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index ce4478d829bd..4d0c51fa5a55 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -25,6 +25,7 @@
/sdk/servicebus/ @yvgopal @nemakam @hemanttanwar @conniey
/sdk/storage/ @amishra-dev @rickle-msft @jaschrep-msft @gapra-msft @alzimmermsft @sima-zhu
/sdk/textanalytics/ @samvaity @mssfang @sima-zhu
+/sdk/spring/ @saragluna @yiliuTo @chenrujun @jialindai
# end to end tests
/sdk/e2e/ @jianghaolu @g2vinay
diff --git a/sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-core/pom.xml b/sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-core/pom.xml
index 1c8a08d65a8d..0fb0266df372 100644
--- a/sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-core/pom.xml
+++ b/sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-core/pom.xml
@@ -63,6 +63,7 @@
com.microsoft.azure
azure
1.34.0
+ provided
com.jcraft
@@ -74,11 +75,6 @@
expect4j
1.6
-
- com.microsoft.azure
- azure-active-directory-spring-boot-starter
- 2.2.5-beta.1
-
diff --git a/sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-core/src/main/java/com/microsoft/azure/test/mgmt/Access.java b/sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-core/src/main/java/com/microsoft/azure/test/management/Access.java
similarity index 86%
rename from sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-core/src/main/java/com/microsoft/azure/test/mgmt/Access.java
rename to sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-core/src/main/java/com/microsoft/azure/test/management/Access.java
index 0678538287c6..991f15398068 100644
--- a/sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-core/src/main/java/com/microsoft/azure/test/mgmt/Access.java
+++ b/sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-core/src/main/java/com/microsoft/azure/test/management/Access.java
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
-package com.microsoft.azure.test.mgmt;
+package com.microsoft.azure.test.management;
import com.microsoft.azure.credentials.AzureTokenCredentials;
diff --git a/sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-core/src/main/java/com/microsoft/azure/test/mgmt/ClientSecretAccess.java b/sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-core/src/main/java/com/microsoft/azure/test/management/ClientSecretAccess.java
similarity index 98%
rename from sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-core/src/main/java/com/microsoft/azure/test/mgmt/ClientSecretAccess.java
rename to sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-core/src/main/java/com/microsoft/azure/test/management/ClientSecretAccess.java
index 1c5635b2c624..a23bdfc7c8b2 100644
--- a/sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-core/src/main/java/com/microsoft/azure/test/mgmt/ClientSecretAccess.java
+++ b/sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-core/src/main/java/com/microsoft/azure/test/management/ClientSecretAccess.java
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
-package com.microsoft.azure.test.mgmt;
+package com.microsoft.azure.test.management;
import com.microsoft.azure.AzureEnvironment;
import com.microsoft.azure.credentials.ApplicationTokenCredentials;
diff --git a/sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-keyvault/pom.xml b/sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-keyvault/pom.xml
index 9f4812494978..44c532a5731d 100644
--- a/sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-keyvault/pom.xml
+++ b/sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-keyvault/pom.xml
@@ -14,9 +14,10 @@
- com.microsoft.azure
- azure-spring-boot-test-core
- 2.2.5-beta.1
+ org.springframework.boot
+ spring-boot-starter-test
+ 2.2.0.RELEASE
+ test
com.microsoft.azure
@@ -24,11 +25,26 @@
2.2.5-beta.1
- org.springframework.boot
- spring-boot-starter-test
- 2.2.0.RELEASE
- test
+ com.microsoft.azure
+ azure-spring-boot-test-core
+ 2.2.5-beta.1
+
+ com.microsoft.azure
+ azure
+ 1.34.0
+
+
+ com.fasterxml.jackson.core
+ jackson-core
+
+
+ com.google.code.gson
+ gson
+
+
+
+
diff --git a/sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-keyvault/src/test/java/com/microsoft/azure/test/keyvault/KeyVaultIT.java b/sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-keyvault/src/test/java/com/microsoft/azure/test/keyvault/KeyVaultIT.java
index 9325e9509694..b51f01b3d29b 100755
--- a/sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-keyvault/src/test/java/com/microsoft/azure/test/keyvault/KeyVaultIT.java
+++ b/sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-keyvault/src/test/java/com/microsoft/azure/test/keyvault/KeyVaultIT.java
@@ -8,7 +8,7 @@
import com.microsoft.azure.management.compute.RunCommandInput;
import com.microsoft.azure.management.compute.VirtualMachine;
import com.microsoft.azure.management.resources.fluentcore.utils.SdkContext;
-import com.microsoft.azure.test.mgmt.ClientSecretAccess;
+import com.microsoft.azure.test.management.ClientSecretAccess;
import com.microsoft.azure.test.utils.AppRunner;
import com.microsoft.azure.test.utils.MavenBasedProject;
import com.microsoft.azure.test.utils.SSHShell;
diff --git a/sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-keyvault/src/test/java/com/microsoft/azure/test/keyvault/MultipleKeyVaultsIT.java b/sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-keyvault/src/test/java/com/microsoft/azure/test/keyvault/MultipleKeyVaultsIT.java
index e5558069b2d3..19ddbd3e4538 100644
--- a/sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-keyvault/src/test/java/com/microsoft/azure/test/keyvault/MultipleKeyVaultsIT.java
+++ b/sdk/spring/azure-spring-boot-tests/azure-spring-boot-test-keyvault/src/test/java/com/microsoft/azure/test/keyvault/MultipleKeyVaultsIT.java
@@ -3,7 +3,7 @@
package com.microsoft.azure.test.keyvault;
-import com.microsoft.azure.test.mgmt.ClientSecretAccess;
+import com.microsoft.azure.test.management.ClientSecretAccess;
import com.microsoft.azure.test.utils.AppRunner;
import org.junit.Test;
import org.springframework.boot.autoconfigure.SpringBootApplication;