From 90a9171f42cc8200e6d848d99cde627280353a05 Mon Sep 17 00:00:00 2001 From: Zihlu Wang Date: Sat, 9 Sep 2023 20:38:02 +0800 Subject: [PATCH] refactor(property-guard): Changed the package name. --- .../autoconfiguration}/PropertyGuard.java | 2 +- .../src/main/resources/META-INF/spring.factories | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename property-guard-spring-boot-starter/src/main/java/cn/org/codecrafters/{propertyencryptor => propertyguard/autoconfiguration}/PropertyGuard.java (98%) diff --git a/property-guard-spring-boot-starter/src/main/java/cn/org/codecrafters/propertyencryptor/PropertyGuard.java b/property-guard-spring-boot-starter/src/main/java/cn/org/codecrafters/propertyguard/autoconfiguration/PropertyGuard.java similarity index 98% rename from property-guard-spring-boot-starter/src/main/java/cn/org/codecrafters/propertyencryptor/PropertyGuard.java rename to property-guard-spring-boot-starter/src/main/java/cn/org/codecrafters/propertyguard/autoconfiguration/PropertyGuard.java index c1d95ef..e02b6b1 100644 --- a/property-guard-spring-boot-starter/src/main/java/cn/org/codecrafters/propertyencryptor/PropertyGuard.java +++ b/property-guard-spring-boot-starter/src/main/java/cn/org/codecrafters/propertyguard/autoconfiguration/PropertyGuard.java @@ -15,7 +15,7 @@ * limitations under the License. */ -package cn.org.codecrafters.propertyencryptor; +package cn.org.codecrafters.propertyguard.autoconfiguration; import cn.org.codecrafters.devkit.utils.AesUtil; import org.springframework.boot.SpringApplication; diff --git a/property-guard-spring-boot-starter/src/main/resources/META-INF/spring.factories b/property-guard-spring-boot-starter/src/main/resources/META-INF/spring.factories index dcdcd64..82e039a 100644 --- a/property-guard-spring-boot-starter/src/main/resources/META-INF/spring.factories +++ b/property-guard-spring-boot-starter/src/main/resources/META-INF/spring.factories @@ -1 +1 @@ -org.springframework.boot.env.EnvironmentPostProcessor=cn.org.codecrafters.propertyencryptor.PropertyGuard \ No newline at end of file +org.springframework.boot.env.EnvironmentPostProcessor=cn.org.codecrafters.propertyguard.autoconfiguration.PropertyGuard \ No newline at end of file