From d66ef06d77f50375046ee3260fc252bc9037d465 Mon Sep 17 00:00:00 2001 From: Mercy Ma Date: Sat, 11 Jan 2025 21:36:53 +0800 Subject: [PATCH] Polish #32 --- microsphere-spring-boot-actuator/pom.xml | 2 +- .../pom.xml | 6 +++--- .../ConfigurableAutoConfigurationImportFilter.java | 0 .../classloading/BannedArtifactClassLoadingListener.java | 0 .../spring/boot/condition/ConditionalOnPropertyPrefix.java | 0 .../spring/boot/condition/OnPropertyPrefixCondition.java | 0 .../spring/boot/constants/PropertyConstants.java | 0 .../spring/boot/constants/SpringBootPropertyConstants.java | 0 .../boot/context/OnceApplicationPreparedEventListener.java | 0 .../context/OnceMainApplicationPreparedEventListener.java | 0 .../context/config/BindableConfigurationBeanBinder.java | 0 .../context/properties/ConfigurationPropertiesBeanInfo.java | 0 ...ListenableConfigurationPropertiesBindHandlerAdvisor.java | 0 .../spring/boot/context/properties/bind/BindListener.java | 0 .../spring/boot/context/properties/bind/BindListeners.java | 0 .../properties/bind/ConfigurationPropertiesBeanContext.java | 0 .../ConfigurationPropertiesBeanPropertyChangedEvent.java | 0 ...gConfigurationPropertiesBeanPropertyChangedListener.java | 0 .../properties/bind/ListenableBindHandlerAdapter.java | 0 .../spring/boot/context/properties/bind/util/BindUtils.java | 0 .../properties/metadata/ConfigurationMetadataReader.java | 0 .../properties/source/util/ConfigurationPropertyUtils.java | 0 .../properties/util/ConfigurationPropertiesUtils.java | 0 .../diagnostics/ArtifactsCollisionDiagnosisListener.java | 0 .../boot/diagnostics/ArtifactsCollisionException.java | 0 .../boot/diagnostics/ArtifactsCollisionFailureAnalyzer.java | 0 .../boot/env/DefaultPropertiesApplicationListener.java | 0 .../spring/boot/env/DefaultPropertiesPostProcessor.java | 0 .../microsphere/spring/boot/env/PropertySourceLoaders.java | 0 .../SpringApplicationDefaultPropertiesPostProcessor.java | 0 .../OriginTrackedConfigurationPropertyInitializer.java | 0 .../config/metadata/ConfigurationMetadataRepository.java | 0 .../listener/FailureReportSpringApplicationRunListener.java | 0 .../boot/listener/SpringApplicationRunListenerAdapter.java | 0 .../boot/report/ConditionEvaluationReportBuilder.java | 0 .../boot/report/ConditionEvaluationReportInitializer.java | 0 .../boot/report/ConditionEvaluationReportListener.java | 0 .../ConditionEvaluationSpringBootExceptionReporter.java | 0 .../spring/boot/report/ConditionsReportMessageBuilder.java | 0 .../spring/boot/util/SpringApplicationUtils.java | 0 .../src/main/resources/META-INF/spring.factories | 0 .../src/main/resources/config/default/core.properties | 0 .../autoconfigure/ApplicationAutoConfigurationTest.java | 0 .../ConfigurableAutoConfigurationImportFilterTest.java | 0 .../spring/boot/constants/PropertyConstantsTest.java | 0 .../context/config/BindableConfigurationBeanBinderTest.java | 0 ...enableConfigurationPropertiesBindHandlerAdvisorTest.java | 0 ...figurationPropertiesBeanPropertyChangedListenerTest.java | 0 .../metadata/ConfigurationMetadataReaderTest.java | 0 .../test/java/io/microsphere/spring/boot/domain/User.java | 0 .../spring/boot/env/PropertySourceLoadersTest.java | 0 .../spring/boot/util/ConfigurationPropertyUtilsTest.java | 0 .../src/test/resources/META-INF/spring.factories | 0 .../src/test/resources/logback.xml | 0 microsphere-spring-boot-dependencies/pom.xml | 2 +- pom.xml | 2 +- 56 files changed, 6 insertions(+), 6 deletions(-) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/pom.xml (92%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/autoconfigure/ConfigurableAutoConfigurationImportFilter.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/classloading/BannedArtifactClassLoadingListener.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/condition/ConditionalOnPropertyPrefix.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/condition/OnPropertyPrefixCondition.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/constants/PropertyConstants.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/constants/SpringBootPropertyConstants.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/context/OnceApplicationPreparedEventListener.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/context/OnceMainApplicationPreparedEventListener.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/context/config/BindableConfigurationBeanBinder.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/context/properties/ConfigurationPropertiesBeanInfo.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/context/properties/ListenableConfigurationPropertiesBindHandlerAdvisor.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/context/properties/bind/BindListener.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/context/properties/bind/BindListeners.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/context/properties/bind/ConfigurationPropertiesBeanContext.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/context/properties/bind/ConfigurationPropertiesBeanPropertyChangedEvent.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/context/properties/bind/EventPublishingConfigurationPropertiesBeanPropertyChangedListener.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/context/properties/bind/ListenableBindHandlerAdapter.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/context/properties/bind/util/BindUtils.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/context/properties/metadata/ConfigurationMetadataReader.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/context/properties/source/util/ConfigurationPropertyUtils.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/context/properties/util/ConfigurationPropertiesUtils.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/diagnostics/ArtifactsCollisionDiagnosisListener.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/diagnostics/ArtifactsCollisionException.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/diagnostics/ArtifactsCollisionFailureAnalyzer.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/env/DefaultPropertiesApplicationListener.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/env/DefaultPropertiesPostProcessor.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/env/PropertySourceLoaders.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/env/SpringApplicationDefaultPropertiesPostProcessor.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/env/config/OriginTrackedConfigurationPropertyInitializer.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/env/config/metadata/ConfigurationMetadataRepository.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/listener/FailureReportSpringApplicationRunListener.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/listener/SpringApplicationRunListenerAdapter.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/report/ConditionEvaluationReportBuilder.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/report/ConditionEvaluationReportInitializer.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/report/ConditionEvaluationReportListener.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/report/ConditionEvaluationSpringBootExceptionReporter.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/report/ConditionsReportMessageBuilder.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/java/io/microsphere/spring/boot/util/SpringApplicationUtils.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/resources/META-INF/spring.factories (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/main/resources/config/default/core.properties (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/test/java/io/microsphere/spring/boot/autoconfigure/ApplicationAutoConfigurationTest.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/test/java/io/microsphere/spring/boot/autoconfigure/ConfigurableAutoConfigurationImportFilterTest.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/test/java/io/microsphere/spring/boot/constants/PropertyConstantsTest.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/test/java/io/microsphere/spring/boot/context/config/BindableConfigurationBeanBinderTest.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/test/java/io/microsphere/spring/boot/context/properties/ListenableConfigurationPropertiesBindHandlerAdvisorTest.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/test/java/io/microsphere/spring/boot/context/properties/bind/EventPublishingConfigurationPropertiesBeanPropertyChangedListenerTest.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/test/java/io/microsphere/spring/boot/context/properties/metadata/ConfigurationMetadataReaderTest.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/test/java/io/microsphere/spring/boot/domain/User.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/test/java/io/microsphere/spring/boot/env/PropertySourceLoadersTest.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/test/java/io/microsphere/spring/boot/util/ConfigurationPropertyUtilsTest.java (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/test/resources/META-INF/spring.factories (100%) rename {microsphere-core-spring-boot-starter => microsphere-spring-boot-core}/src/test/resources/logback.xml (100%) diff --git a/microsphere-spring-boot-actuator/pom.xml b/microsphere-spring-boot-actuator/pom.xml index 3391a58..fc05b2a 100644 --- a/microsphere-spring-boot-actuator/pom.xml +++ b/microsphere-spring-boot-actuator/pom.xml @@ -23,7 +23,7 @@ io.github.microsphere-projects - microsphere-core-spring-boot-starter + microsphere-spring-boot-core ${revision} diff --git a/microsphere-core-spring-boot-starter/pom.xml b/microsphere-spring-boot-core/pom.xml similarity index 92% rename from microsphere-core-spring-boot-starter/pom.xml rename to microsphere-spring-boot-core/pom.xml index 1acaa52..8241e29 100644 --- a/microsphere-core-spring-boot-starter/pom.xml +++ b/microsphere-spring-boot-core/pom.xml @@ -11,11 +11,11 @@ 4.0.0 io.github.microsphere-projects - microsphere-core-spring-boot-starter + microsphere-spring-boot-core ${revision} - Microsphere :: Spring Boot :: Core Starter - Microsphere Spring Boot Core Starter + Microsphere :: Spring Boot :: Core + Microsphere Spring Boot Core diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/autoconfigure/ConfigurableAutoConfigurationImportFilter.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/autoconfigure/ConfigurableAutoConfigurationImportFilter.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/autoconfigure/ConfigurableAutoConfigurationImportFilter.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/autoconfigure/ConfigurableAutoConfigurationImportFilter.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/classloading/BannedArtifactClassLoadingListener.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/classloading/BannedArtifactClassLoadingListener.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/classloading/BannedArtifactClassLoadingListener.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/classloading/BannedArtifactClassLoadingListener.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/condition/ConditionalOnPropertyPrefix.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/condition/ConditionalOnPropertyPrefix.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/condition/ConditionalOnPropertyPrefix.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/condition/ConditionalOnPropertyPrefix.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/condition/OnPropertyPrefixCondition.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/condition/OnPropertyPrefixCondition.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/condition/OnPropertyPrefixCondition.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/condition/OnPropertyPrefixCondition.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/constants/PropertyConstants.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/constants/PropertyConstants.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/constants/PropertyConstants.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/constants/PropertyConstants.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/constants/SpringBootPropertyConstants.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/constants/SpringBootPropertyConstants.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/constants/SpringBootPropertyConstants.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/constants/SpringBootPropertyConstants.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/OnceApplicationPreparedEventListener.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/OnceApplicationPreparedEventListener.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/OnceApplicationPreparedEventListener.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/OnceApplicationPreparedEventListener.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/OnceMainApplicationPreparedEventListener.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/OnceMainApplicationPreparedEventListener.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/OnceMainApplicationPreparedEventListener.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/OnceMainApplicationPreparedEventListener.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/config/BindableConfigurationBeanBinder.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/config/BindableConfigurationBeanBinder.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/config/BindableConfigurationBeanBinder.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/config/BindableConfigurationBeanBinder.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/properties/ConfigurationPropertiesBeanInfo.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/properties/ConfigurationPropertiesBeanInfo.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/properties/ConfigurationPropertiesBeanInfo.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/properties/ConfigurationPropertiesBeanInfo.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/properties/ListenableConfigurationPropertiesBindHandlerAdvisor.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/properties/ListenableConfigurationPropertiesBindHandlerAdvisor.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/properties/ListenableConfigurationPropertiesBindHandlerAdvisor.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/properties/ListenableConfigurationPropertiesBindHandlerAdvisor.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/properties/bind/BindListener.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/properties/bind/BindListener.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/properties/bind/BindListener.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/properties/bind/BindListener.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/properties/bind/BindListeners.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/properties/bind/BindListeners.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/properties/bind/BindListeners.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/properties/bind/BindListeners.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/properties/bind/ConfigurationPropertiesBeanContext.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/properties/bind/ConfigurationPropertiesBeanContext.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/properties/bind/ConfigurationPropertiesBeanContext.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/properties/bind/ConfigurationPropertiesBeanContext.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/properties/bind/ConfigurationPropertiesBeanPropertyChangedEvent.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/properties/bind/ConfigurationPropertiesBeanPropertyChangedEvent.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/properties/bind/ConfigurationPropertiesBeanPropertyChangedEvent.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/properties/bind/ConfigurationPropertiesBeanPropertyChangedEvent.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/properties/bind/EventPublishingConfigurationPropertiesBeanPropertyChangedListener.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/properties/bind/EventPublishingConfigurationPropertiesBeanPropertyChangedListener.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/properties/bind/EventPublishingConfigurationPropertiesBeanPropertyChangedListener.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/properties/bind/EventPublishingConfigurationPropertiesBeanPropertyChangedListener.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/properties/bind/ListenableBindHandlerAdapter.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/properties/bind/ListenableBindHandlerAdapter.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/properties/bind/ListenableBindHandlerAdapter.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/properties/bind/ListenableBindHandlerAdapter.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/properties/bind/util/BindUtils.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/properties/bind/util/BindUtils.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/properties/bind/util/BindUtils.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/properties/bind/util/BindUtils.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/properties/metadata/ConfigurationMetadataReader.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/properties/metadata/ConfigurationMetadataReader.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/properties/metadata/ConfigurationMetadataReader.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/properties/metadata/ConfigurationMetadataReader.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/properties/source/util/ConfigurationPropertyUtils.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/properties/source/util/ConfigurationPropertyUtils.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/properties/source/util/ConfigurationPropertyUtils.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/properties/source/util/ConfigurationPropertyUtils.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/properties/util/ConfigurationPropertiesUtils.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/properties/util/ConfigurationPropertiesUtils.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/context/properties/util/ConfigurationPropertiesUtils.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/context/properties/util/ConfigurationPropertiesUtils.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/diagnostics/ArtifactsCollisionDiagnosisListener.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/diagnostics/ArtifactsCollisionDiagnosisListener.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/diagnostics/ArtifactsCollisionDiagnosisListener.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/diagnostics/ArtifactsCollisionDiagnosisListener.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/diagnostics/ArtifactsCollisionException.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/diagnostics/ArtifactsCollisionException.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/diagnostics/ArtifactsCollisionException.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/diagnostics/ArtifactsCollisionException.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/diagnostics/ArtifactsCollisionFailureAnalyzer.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/diagnostics/ArtifactsCollisionFailureAnalyzer.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/diagnostics/ArtifactsCollisionFailureAnalyzer.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/diagnostics/ArtifactsCollisionFailureAnalyzer.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/env/DefaultPropertiesApplicationListener.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/env/DefaultPropertiesApplicationListener.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/env/DefaultPropertiesApplicationListener.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/env/DefaultPropertiesApplicationListener.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/env/DefaultPropertiesPostProcessor.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/env/DefaultPropertiesPostProcessor.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/env/DefaultPropertiesPostProcessor.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/env/DefaultPropertiesPostProcessor.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/env/PropertySourceLoaders.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/env/PropertySourceLoaders.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/env/PropertySourceLoaders.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/env/PropertySourceLoaders.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/env/SpringApplicationDefaultPropertiesPostProcessor.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/env/SpringApplicationDefaultPropertiesPostProcessor.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/env/SpringApplicationDefaultPropertiesPostProcessor.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/env/SpringApplicationDefaultPropertiesPostProcessor.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/env/config/OriginTrackedConfigurationPropertyInitializer.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/env/config/OriginTrackedConfigurationPropertyInitializer.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/env/config/OriginTrackedConfigurationPropertyInitializer.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/env/config/OriginTrackedConfigurationPropertyInitializer.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/env/config/metadata/ConfigurationMetadataRepository.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/env/config/metadata/ConfigurationMetadataRepository.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/env/config/metadata/ConfigurationMetadataRepository.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/env/config/metadata/ConfigurationMetadataRepository.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/listener/FailureReportSpringApplicationRunListener.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/listener/FailureReportSpringApplicationRunListener.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/listener/FailureReportSpringApplicationRunListener.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/listener/FailureReportSpringApplicationRunListener.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/listener/SpringApplicationRunListenerAdapter.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/listener/SpringApplicationRunListenerAdapter.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/listener/SpringApplicationRunListenerAdapter.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/listener/SpringApplicationRunListenerAdapter.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/report/ConditionEvaluationReportBuilder.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/report/ConditionEvaluationReportBuilder.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/report/ConditionEvaluationReportBuilder.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/report/ConditionEvaluationReportBuilder.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/report/ConditionEvaluationReportInitializer.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/report/ConditionEvaluationReportInitializer.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/report/ConditionEvaluationReportInitializer.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/report/ConditionEvaluationReportInitializer.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/report/ConditionEvaluationReportListener.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/report/ConditionEvaluationReportListener.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/report/ConditionEvaluationReportListener.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/report/ConditionEvaluationReportListener.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/report/ConditionEvaluationSpringBootExceptionReporter.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/report/ConditionEvaluationSpringBootExceptionReporter.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/report/ConditionEvaluationSpringBootExceptionReporter.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/report/ConditionEvaluationSpringBootExceptionReporter.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/report/ConditionsReportMessageBuilder.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/report/ConditionsReportMessageBuilder.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/report/ConditionsReportMessageBuilder.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/report/ConditionsReportMessageBuilder.java diff --git a/microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/util/SpringApplicationUtils.java b/microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/util/SpringApplicationUtils.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/java/io/microsphere/spring/boot/util/SpringApplicationUtils.java rename to microsphere-spring-boot-core/src/main/java/io/microsphere/spring/boot/util/SpringApplicationUtils.java diff --git a/microsphere-core-spring-boot-starter/src/main/resources/META-INF/spring.factories b/microsphere-spring-boot-core/src/main/resources/META-INF/spring.factories similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/resources/META-INF/spring.factories rename to microsphere-spring-boot-core/src/main/resources/META-INF/spring.factories diff --git a/microsphere-core-spring-boot-starter/src/main/resources/config/default/core.properties b/microsphere-spring-boot-core/src/main/resources/config/default/core.properties similarity index 100% rename from microsphere-core-spring-boot-starter/src/main/resources/config/default/core.properties rename to microsphere-spring-boot-core/src/main/resources/config/default/core.properties diff --git a/microsphere-core-spring-boot-starter/src/test/java/io/microsphere/spring/boot/autoconfigure/ApplicationAutoConfigurationTest.java b/microsphere-spring-boot-core/src/test/java/io/microsphere/spring/boot/autoconfigure/ApplicationAutoConfigurationTest.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/test/java/io/microsphere/spring/boot/autoconfigure/ApplicationAutoConfigurationTest.java rename to microsphere-spring-boot-core/src/test/java/io/microsphere/spring/boot/autoconfigure/ApplicationAutoConfigurationTest.java diff --git a/microsphere-core-spring-boot-starter/src/test/java/io/microsphere/spring/boot/autoconfigure/ConfigurableAutoConfigurationImportFilterTest.java b/microsphere-spring-boot-core/src/test/java/io/microsphere/spring/boot/autoconfigure/ConfigurableAutoConfigurationImportFilterTest.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/test/java/io/microsphere/spring/boot/autoconfigure/ConfigurableAutoConfigurationImportFilterTest.java rename to microsphere-spring-boot-core/src/test/java/io/microsphere/spring/boot/autoconfigure/ConfigurableAutoConfigurationImportFilterTest.java diff --git a/microsphere-core-spring-boot-starter/src/test/java/io/microsphere/spring/boot/constants/PropertyConstantsTest.java b/microsphere-spring-boot-core/src/test/java/io/microsphere/spring/boot/constants/PropertyConstantsTest.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/test/java/io/microsphere/spring/boot/constants/PropertyConstantsTest.java rename to microsphere-spring-boot-core/src/test/java/io/microsphere/spring/boot/constants/PropertyConstantsTest.java diff --git a/microsphere-core-spring-boot-starter/src/test/java/io/microsphere/spring/boot/context/config/BindableConfigurationBeanBinderTest.java b/microsphere-spring-boot-core/src/test/java/io/microsphere/spring/boot/context/config/BindableConfigurationBeanBinderTest.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/test/java/io/microsphere/spring/boot/context/config/BindableConfigurationBeanBinderTest.java rename to microsphere-spring-boot-core/src/test/java/io/microsphere/spring/boot/context/config/BindableConfigurationBeanBinderTest.java diff --git a/microsphere-core-spring-boot-starter/src/test/java/io/microsphere/spring/boot/context/properties/ListenableConfigurationPropertiesBindHandlerAdvisorTest.java b/microsphere-spring-boot-core/src/test/java/io/microsphere/spring/boot/context/properties/ListenableConfigurationPropertiesBindHandlerAdvisorTest.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/test/java/io/microsphere/spring/boot/context/properties/ListenableConfigurationPropertiesBindHandlerAdvisorTest.java rename to microsphere-spring-boot-core/src/test/java/io/microsphere/spring/boot/context/properties/ListenableConfigurationPropertiesBindHandlerAdvisorTest.java diff --git a/microsphere-core-spring-boot-starter/src/test/java/io/microsphere/spring/boot/context/properties/bind/EventPublishingConfigurationPropertiesBeanPropertyChangedListenerTest.java b/microsphere-spring-boot-core/src/test/java/io/microsphere/spring/boot/context/properties/bind/EventPublishingConfigurationPropertiesBeanPropertyChangedListenerTest.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/test/java/io/microsphere/spring/boot/context/properties/bind/EventPublishingConfigurationPropertiesBeanPropertyChangedListenerTest.java rename to microsphere-spring-boot-core/src/test/java/io/microsphere/spring/boot/context/properties/bind/EventPublishingConfigurationPropertiesBeanPropertyChangedListenerTest.java diff --git a/microsphere-core-spring-boot-starter/src/test/java/io/microsphere/spring/boot/context/properties/metadata/ConfigurationMetadataReaderTest.java b/microsphere-spring-boot-core/src/test/java/io/microsphere/spring/boot/context/properties/metadata/ConfigurationMetadataReaderTest.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/test/java/io/microsphere/spring/boot/context/properties/metadata/ConfigurationMetadataReaderTest.java rename to microsphere-spring-boot-core/src/test/java/io/microsphere/spring/boot/context/properties/metadata/ConfigurationMetadataReaderTest.java diff --git a/microsphere-core-spring-boot-starter/src/test/java/io/microsphere/spring/boot/domain/User.java b/microsphere-spring-boot-core/src/test/java/io/microsphere/spring/boot/domain/User.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/test/java/io/microsphere/spring/boot/domain/User.java rename to microsphere-spring-boot-core/src/test/java/io/microsphere/spring/boot/domain/User.java diff --git a/microsphere-core-spring-boot-starter/src/test/java/io/microsphere/spring/boot/env/PropertySourceLoadersTest.java b/microsphere-spring-boot-core/src/test/java/io/microsphere/spring/boot/env/PropertySourceLoadersTest.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/test/java/io/microsphere/spring/boot/env/PropertySourceLoadersTest.java rename to microsphere-spring-boot-core/src/test/java/io/microsphere/spring/boot/env/PropertySourceLoadersTest.java diff --git a/microsphere-core-spring-boot-starter/src/test/java/io/microsphere/spring/boot/util/ConfigurationPropertyUtilsTest.java b/microsphere-spring-boot-core/src/test/java/io/microsphere/spring/boot/util/ConfigurationPropertyUtilsTest.java similarity index 100% rename from microsphere-core-spring-boot-starter/src/test/java/io/microsphere/spring/boot/util/ConfigurationPropertyUtilsTest.java rename to microsphere-spring-boot-core/src/test/java/io/microsphere/spring/boot/util/ConfigurationPropertyUtilsTest.java diff --git a/microsphere-core-spring-boot-starter/src/test/resources/META-INF/spring.factories b/microsphere-spring-boot-core/src/test/resources/META-INF/spring.factories similarity index 100% rename from microsphere-core-spring-boot-starter/src/test/resources/META-INF/spring.factories rename to microsphere-spring-boot-core/src/test/resources/META-INF/spring.factories diff --git a/microsphere-core-spring-boot-starter/src/test/resources/logback.xml b/microsphere-spring-boot-core/src/test/resources/logback.xml similarity index 100% rename from microsphere-core-spring-boot-starter/src/test/resources/logback.xml rename to microsphere-spring-boot-core/src/test/resources/logback.xml diff --git a/microsphere-spring-boot-dependencies/pom.xml b/microsphere-spring-boot-dependencies/pom.xml index 13a1d96..b372de6 100644 --- a/microsphere-spring-boot-dependencies/pom.xml +++ b/microsphere-spring-boot-dependencies/pom.xml @@ -23,7 +23,7 @@ io.github.microsphere-projects - microsphere-core-spring-boot-starter + microsphere-spring-boot-core ${revision} diff --git a/pom.xml b/pom.xml index 4f47016..c163cc8 100644 --- a/pom.xml +++ b/pom.xml @@ -58,7 +58,7 @@ microsphere-spring-boot-parent microsphere-spring-boot-dependencies - microsphere-core-spring-boot-starter + microsphere-spring-boot-core microsphere-spring-boot-actuator