diff --git a/pom.xml b/pom.xml index ecce4de425..066e9747a4 100644 --- a/pom.xml +++ b/pom.xml @@ -64,6 +64,7 @@ false 3.0.4 2020.0.4 + 2.5.7 0.0.29 1.0.2 0.10.5 @@ -80,9 +81,9 @@ - org.springframework.cloud - spring-cloud-build-dependencies - ${spring-cloud-build.version} + org.springframework.boot + spring-boot-dependencies + ${spring-boot-dependencies.version} pom import @@ -171,7 +172,6 @@ junit test - org.junit.vintage junit-vintage-engine diff --git a/spring-cloud-gcp-secretmanager/src/test/java/com/google/cloud/spring/secretmanager/it/SecretManagerPropertySourceIntegrationTests.java b/spring-cloud-gcp-secretmanager/src/test/java/com/google/cloud/spring/secretmanager/it/SecretManagerPropertySourceIntegrationTests.java index 7d959f066c..2c85315414 100644 --- a/spring-cloud-gcp-secretmanager/src/test/java/com/google/cloud/spring/secretmanager/it/SecretManagerPropertySourceIntegrationTests.java +++ b/spring-cloud-gcp-secretmanager/src/test/java/com/google/cloud/spring/secretmanager/it/SecretManagerPropertySourceIntegrationTests.java @@ -35,7 +35,7 @@ public class SecretManagerPropertySourceIntegrationTests { private ConfigurableApplicationContext context = - new SpringApplicationBuilder(TestConfiguration.class) + new SpringApplicationBuilder(SecretManagerTestConfiguration.class, TestConfiguration.class) .web(WebApplicationType.NONE) .properties("spring.cloud.bootstrap.enabled=true") .run();