From 8251877375759c636c183d64c5d14f52c8ca776f Mon Sep 17 00:00:00 2001 From: Krzysztof Woyke Date: Tue, 3 Dec 2019 13:53:59 +0100 Subject: [PATCH] BAEL-19790: Upgrade to Hoxton.RELEAS and Spring Boot 2.2.1 --- spring-cloud/spring-cloud-config/pom.xml | 7 ++++--- .../src/main/resources/application.properties | 14 +++++++------- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/spring-cloud/spring-cloud-config/pom.xml b/spring-cloud/spring-cloud-config/pom.xml index 1a4efc7a60..82fac80a6b 100644 --- a/spring-cloud/spring-cloud-config/pom.xml +++ b/spring-cloud/spring-cloud-config/pom.xml @@ -9,10 +9,10 @@ pom - parent-boot-1 + parent-boot-2 com.baeldung 0.0.1-SNAPSHOT - ../../parent-boot-1 + ../../parent-boot-2 @@ -33,7 +33,8 @@ - Brixton.SR7 + Hoxton.RELEASE + 2.2.1.RELEASE diff --git a/spring-cloud/spring-cloud-config/server/src/main/resources/application.properties b/spring-cloud/spring-cloud-config/server/src/main/resources/application.properties index 3d4f3bcd47..1260f16798 100644 --- a/spring-cloud/spring-cloud-config/server/src/main/resources/application.properties +++ b/spring-cloud/spring-cloud-config/server/src/main/resources/application.properties @@ -1,9 +1,9 @@ server.port=8888 -spring.cloud.config.server.git.uri= +spring.cloud.config.server.git.uri=file:///${user.home}/config-repo spring.cloud.config.server.git.clone-on-start=true -security.user.name=root -security.user.password=s3cr3t -encrypt.key-store.location=classpath:/config-server.jks -encrypt.key-store.password=my-s70r3-s3cr3t -encrypt.key-store.alias=config-server-key -encrypt.key-store.secret=my-k34-s3cr3t +spring.security.user.name=root +spring.security.user.password=s3cr3t +#encrypt.key-store.location=classpath:/config-server.jks +#encrypt.key-store.password=my-s70r3-s3cr3t +#encrypt.key-store.alias=config-server-key +#encrypt.key-store.secret=my-k34-s3cr3t