From 330dc7fec3406e1f00f4885f21aa1783b75e406c Mon Sep 17 00:00:00 2001 From: John Blum Date: Tue, 19 Jun 2018 18:35:09 -0700 Subject: [PATCH] Rename modules. Rename geode-spring-boot to spring-geode. Rename geode-spring-boot-autoconfigure to spring-geode-autoconfigure. Rename geode-spring-boot-starter to spring-geode-starter. Rename gemfire-spring-boot-starter to spring-gemfire-starter. Resolves GitHub Issue #6. --- .../spring-gemfire-starter.gradle | 4 ++-- .../spring-geode-autoconfigure.gradle | 2 +- .../CachingProviderAutoConfiguration.java | 0 .../autoconfigure/ClientCacheAutoConfiguration.java | 0 .../ClientSecurityAutoConfiguration.java | 0 .../ContinuousQueryAutoConfiguration.java | 0 .../FunctionExecutionAutoConfiguration.java | 0 ...mFireRepositoriesAutoConfigurationRegistrar.java | 0 .../PdxSerializationAutoConfiguration.java | 0 .../PeerSecurityAutoConfiguration.java | 0 .../RepositoriesAutoConfiguration.java | 0 .../boot/autoconfigure/SslAutoConfiguration.java | 0 .../geode/boot/autoconfigure/package-info.java | 0 .../src/main/resources/META-INF/spring.factories | 0 .../src/test/java/example/app/NonBeanType.java | 0 .../src/test/java/example/app/model/Author.java | 0 .../src/test/java/example/app/model/Book.java | 0 .../src/test/java/example/app/model/ISBN.java | 0 .../test/java/example/app/repo/BookRepository.java | 0 .../test/java/example/app/service/BookService.java | 0 .../app/service/support/CachingBookService.java | 0 .../echo/config/EchoClientConfiguration.java | 0 .../echo/config/EchoServerConfiguration.java | 0 .../java/example/geode/cache/EchoCacheLoader.java | 0 .../geode/query/cq/event/TemperatureReading.java | 0 ...TemperatureReadingsContinuousQueriesHandler.java | 0 .../geode/query/cq/event/TemperatureUnit.java | 0 .../src/test/java/example/java/net/UrlRevealed.java | 0 ...GeodeClientCacheApplicationIntegrationTests.java | 0 ...heGeodePeerCacheApplicationIntegrationTests.java | 0 .../AutoConfiguredCachingIntegrationTests.java | 0 ...toConfiguredContinuousQueryIntegrationTests.java | 0 ...onfiguredFunctionExecutionsIntegrationTests.java | 0 .../function/executions/Calculator.java | 0 .../AutoConfiguredRepositoriesIntegrationTests.java | 0 .../autoconfigure/repository/model/Customer.java | 0 .../repository/repo/CustomerRepository.java | 0 .../repository/service/CustomerService.java | 0 ...toConfiguredSecurityContextIntegrationTests.java | 0 ...figuredCloudSecurityContextIntegrationTests.java | 0 ...figuredLocalSecurityContextIntegrationTests.java | 0 .../ssl/AutoConfiguredSslIntegrationTests.java | 0 .../resources/application-security-cloud.properties | 0 .../application-security-local-client.properties | 0 .../application-security-local-server.properties | 0 .../src/test/resources/application-ssl.properties | 0 .../src/test/resources/application-vcap.properties | 0 .../src/test/resources/logback.xml | 0 .../src/test/resources/test-trusted.keystore | Bin .../spring-geode-starter.gradle | 4 ++-- .../spring-geode.gradle | 0 .../geode/cache/support/CacheLoaderSupport.java | 0 .../DistributedSystemIdConfiguration.java | 0 .../annotation/DurableClientConfiguration.java | 0 .../config/annotation/EnableDurableClient.java | 0 .../config/annotation/GroupsConfiguration.java | 0 .../config/annotation/MemberNameConfiguration.java | 0 .../config/annotation/UseDistributedSystemId.java | 0 .../geode/config/annotation/UseGroups.java | 0 .../geode/config/annotation/UseMemberName.java | 0 .../geode/core/env/VcapPropertySource.java | 0 .../geode/core/env/support/CloudCacheService.java | 0 .../geode/core/env/support/Service.java | 0 .../geode/core/env/support/User.java | 0 .../geode/core/util/ObjectUtils.java | 0 ...FunctionExecutionAutoConfigurationExtension.java | 0 ...FunctionExecutionAutoConfigurationRegistrar.java | 0 .../function/support/AbstractResultCollector.java | 0 .../support/SingleResultReturningCollector.java | 0 .../security/support/SecurityManagerProxy.java | 0 .../security/support/SecurityManagerSupport.java | 0 ...ibutedSystemIdConfigurationIntegrationTests.java | 0 .../DurableClientConfigurationIntegrationTests.java | 0 .../GroupsConfigurationIntegrationTests.java | 0 .../MemberNameConfigurationIntegrationTests.java | 0 .../geode/core/env/VcapPropertySourceUnitTests.java | 0 .../env/support/CloudCacheServiceUnitTests.java | 0 .../geode/core/env/support/ServiceUnitTests.java | 0 .../geode/core/env/support/UserUnitTests.java | 0 .../geode/core/util/ObjectUtilsUnitTests.java | 0 .../support/AbstractResultCollectorUnitTests.java | 0 .../SingleResultReturningCollectorUnitTests.java | 0 .../SecurityManagerProxyIntegrationTests.java | 0 .../support/SecurityManagerProxyUnitTests.java | 0 84 files changed, 5 insertions(+), 5 deletions(-) rename gemfire-spring-boot-starter/gemfire-spring-boot-starter.gradle => spring-gemfire-starter/spring-gemfire-starter.gradle (88%) rename geode-spring-boot-autoconfigure/geode-spring-boot-autoconfigure.gradle => spring-geode-autoconfigure/spring-geode-autoconfigure.gradle (96%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/main/java/org/springframework/geode/boot/autoconfigure/CachingProviderAutoConfiguration.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/main/java/org/springframework/geode/boot/autoconfigure/ClientCacheAutoConfiguration.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/main/java/org/springframework/geode/boot/autoconfigure/ClientSecurityAutoConfiguration.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/main/java/org/springframework/geode/boot/autoconfigure/ContinuousQueryAutoConfiguration.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/main/java/org/springframework/geode/boot/autoconfigure/FunctionExecutionAutoConfiguration.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/main/java/org/springframework/geode/boot/autoconfigure/GemFireRepositoriesAutoConfigurationRegistrar.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/main/java/org/springframework/geode/boot/autoconfigure/PdxSerializationAutoConfiguration.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/main/java/org/springframework/geode/boot/autoconfigure/PeerSecurityAutoConfiguration.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/main/java/org/springframework/geode/boot/autoconfigure/RepositoriesAutoConfiguration.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/main/java/org/springframework/geode/boot/autoconfigure/SslAutoConfiguration.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/main/java/org/springframework/geode/boot/autoconfigure/package-info.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/main/resources/META-INF/spring.factories (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/example/app/NonBeanType.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/example/app/model/Author.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/example/app/model/Book.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/example/app/model/ISBN.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/example/app/repo/BookRepository.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/example/app/service/BookService.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/example/app/service/support/CachingBookService.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/example/echo/config/EchoClientConfiguration.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/example/echo/config/EchoServerConfiguration.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/example/geode/cache/EchoCacheLoader.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/example/geode/query/cq/event/TemperatureReading.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/example/geode/query/cq/event/TemperatureReadingsContinuousQueriesHandler.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/example/geode/query/cq/event/TemperatureUnit.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/example/java/net/UrlRevealed.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/org/springframework/geode/boot/autoconfigure/cache/client/SpringBootApacheGeodeClientCacheApplicationIntegrationTests.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/org/springframework/geode/boot/autoconfigure/cache/peer/SpringBootApacheGeodePeerCacheApplicationIntegrationTests.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/org/springframework/geode/boot/autoconfigure/caching/AutoConfiguredCachingIntegrationTests.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/org/springframework/geode/boot/autoconfigure/cq/AutoConfiguredContinuousQueryIntegrationTests.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/org/springframework/geode/boot/autoconfigure/function/AutoConfiguredFunctionExecutionsIntegrationTests.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/org/springframework/geode/boot/autoconfigure/function/executions/Calculator.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/org/springframework/geode/boot/autoconfigure/repository/AutoConfiguredRepositoriesIntegrationTests.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/org/springframework/geode/boot/autoconfigure/repository/model/Customer.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/org/springframework/geode/boot/autoconfigure/repository/repo/CustomerRepository.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/org/springframework/geode/boot/autoconfigure/repository/service/CustomerService.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/org/springframework/geode/boot/autoconfigure/security/auth/AbstractAutoConfiguredSecurityContextIntegrationTests.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/org/springframework/geode/boot/autoconfigure/security/auth/cloud/AutoConfiguredCloudSecurityContextIntegrationTests.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/org/springframework/geode/boot/autoconfigure/security/auth/local/AutoConfiguredLocalSecurityContextIntegrationTests.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/java/org/springframework/geode/boot/autoconfigure/security/ssl/AutoConfiguredSslIntegrationTests.java (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/resources/application-security-cloud.properties (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/resources/application-security-local-client.properties (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/resources/application-security-local-server.properties (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/resources/application-ssl.properties (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/resources/application-vcap.properties (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/resources/logback.xml (100%) rename {geode-spring-boot-autoconfigure => spring-geode-autoconfigure}/src/test/resources/test-trusted.keystore (100%) rename geode-spring-boot-starter/geode-spring-boot-starter.gradle => spring-geode-starter/spring-geode-starter.gradle (85%) rename geode-spring-boot/geode-spring-boot.gradle => spring-geode/spring-geode.gradle (100%) rename {geode-spring-boot => spring-geode}/src/main/java/org/springframework/geode/cache/support/CacheLoaderSupport.java (100%) rename {geode-spring-boot => spring-geode}/src/main/java/org/springframework/geode/config/annotation/DistributedSystemIdConfiguration.java (100%) rename {geode-spring-boot => spring-geode}/src/main/java/org/springframework/geode/config/annotation/DurableClientConfiguration.java (100%) rename {geode-spring-boot => spring-geode}/src/main/java/org/springframework/geode/config/annotation/EnableDurableClient.java (100%) rename {geode-spring-boot => spring-geode}/src/main/java/org/springframework/geode/config/annotation/GroupsConfiguration.java (100%) rename {geode-spring-boot => spring-geode}/src/main/java/org/springframework/geode/config/annotation/MemberNameConfiguration.java (100%) rename {geode-spring-boot => spring-geode}/src/main/java/org/springframework/geode/config/annotation/UseDistributedSystemId.java (100%) rename {geode-spring-boot => spring-geode}/src/main/java/org/springframework/geode/config/annotation/UseGroups.java (100%) rename {geode-spring-boot => spring-geode}/src/main/java/org/springframework/geode/config/annotation/UseMemberName.java (100%) rename {geode-spring-boot => spring-geode}/src/main/java/org/springframework/geode/core/env/VcapPropertySource.java (100%) rename {geode-spring-boot => spring-geode}/src/main/java/org/springframework/geode/core/env/support/CloudCacheService.java (100%) rename {geode-spring-boot => spring-geode}/src/main/java/org/springframework/geode/core/env/support/Service.java (100%) rename {geode-spring-boot => spring-geode}/src/main/java/org/springframework/geode/core/env/support/User.java (100%) rename {geode-spring-boot => spring-geode}/src/main/java/org/springframework/geode/core/util/ObjectUtils.java (100%) rename {geode-spring-boot => spring-geode}/src/main/java/org/springframework/geode/function/config/AbstractFunctionExecutionAutoConfigurationExtension.java (100%) rename {geode-spring-boot => spring-geode}/src/main/java/org/springframework/geode/function/config/GemFireFunctionExecutionAutoConfigurationRegistrar.java (100%) rename {geode-spring-boot => spring-geode}/src/main/java/org/springframework/geode/function/support/AbstractResultCollector.java (100%) rename {geode-spring-boot => spring-geode}/src/main/java/org/springframework/geode/function/support/SingleResultReturningCollector.java (100%) rename {geode-spring-boot => spring-geode}/src/main/java/org/springframework/geode/security/support/SecurityManagerProxy.java (100%) rename {geode-spring-boot => spring-geode}/src/main/java/org/springframework/geode/security/support/SecurityManagerSupport.java (100%) rename {geode-spring-boot => spring-geode}/src/test/java/org/springframework/geode/config/annotation/DistributedSystemIdConfigurationIntegrationTests.java (100%) rename {geode-spring-boot => spring-geode}/src/test/java/org/springframework/geode/config/annotation/DurableClientConfigurationIntegrationTests.java (100%) rename {geode-spring-boot => spring-geode}/src/test/java/org/springframework/geode/config/annotation/GroupsConfigurationIntegrationTests.java (100%) rename {geode-spring-boot => spring-geode}/src/test/java/org/springframework/geode/config/annotation/MemberNameConfigurationIntegrationTests.java (100%) rename {geode-spring-boot => spring-geode}/src/test/java/org/springframework/geode/core/env/VcapPropertySourceUnitTests.java (100%) rename {geode-spring-boot => spring-geode}/src/test/java/org/springframework/geode/core/env/support/CloudCacheServiceUnitTests.java (100%) rename {geode-spring-boot => spring-geode}/src/test/java/org/springframework/geode/core/env/support/ServiceUnitTests.java (100%) rename {geode-spring-boot => spring-geode}/src/test/java/org/springframework/geode/core/env/support/UserUnitTests.java (100%) rename {geode-spring-boot => spring-geode}/src/test/java/org/springframework/geode/core/util/ObjectUtilsUnitTests.java (100%) rename {geode-spring-boot => spring-geode}/src/test/java/org/springframework/geode/function/support/AbstractResultCollectorUnitTests.java (100%) rename {geode-spring-boot => spring-geode}/src/test/java/org/springframework/geode/function/support/SingleResultReturningCollectorUnitTests.java (100%) rename {geode-spring-boot => spring-geode}/src/test/java/org/springframework/geode/security/support/SecurityManagerProxyIntegrationTests.java (100%) rename {geode-spring-boot => spring-geode}/src/test/java/org/springframework/geode/security/support/SecurityManagerProxyUnitTests.java (100%) diff --git a/gemfire-spring-boot-starter/gemfire-spring-boot-starter.gradle b/spring-gemfire-starter/spring-gemfire-starter.gradle similarity index 88% rename from gemfire-spring-boot-starter/gemfire-spring-boot-starter.gradle rename to spring-gemfire-starter/spring-gemfire-starter.gradle index afa3ded3..282331a4 100644 --- a/gemfire-spring-boot-starter/gemfire-spring-boot-starter.gradle +++ b/spring-gemfire-starter/spring-gemfire-starter.gradle @@ -21,11 +21,11 @@ dependencies { exclude group: "org.springframework.boot", module: "spring-boot-starter-logging" } - compile(project(':geode-spring-boot')) { + compile(project(':spring-geode')) { exclude group: "org.springframework.data", module: "spring-data-geode" } - compile(project(':geode-spring-boot-autoconfigure')) { + compile(project(':spring-geode-autoconfigure')) { exclude group: "org.springframework.data", module: "spring-data-geode" } diff --git a/geode-spring-boot-autoconfigure/geode-spring-boot-autoconfigure.gradle b/spring-geode-autoconfigure/spring-geode-autoconfigure.gradle similarity index 96% rename from geode-spring-boot-autoconfigure/geode-spring-boot-autoconfigure.gradle rename to spring-geode-autoconfigure/spring-geode-autoconfigure.gradle index 99030570..9997d9af 100644 --- a/geode-spring-boot-autoconfigure/geode-spring-boot-autoconfigure.gradle +++ b/spring-geode-autoconfigure/spring-geode-autoconfigure.gradle @@ -20,7 +20,7 @@ dependencyManagement { dependencies { - compile project(":geode-spring-boot") + compile project(":spring-geode") testCompile "org.assertj:assertj-core" testCompile "junit:junit" diff --git a/geode-spring-boot-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/CachingProviderAutoConfiguration.java b/spring-geode-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/CachingProviderAutoConfiguration.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/CachingProviderAutoConfiguration.java rename to spring-geode-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/CachingProviderAutoConfiguration.java diff --git a/geode-spring-boot-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/ClientCacheAutoConfiguration.java b/spring-geode-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/ClientCacheAutoConfiguration.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/ClientCacheAutoConfiguration.java rename to spring-geode-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/ClientCacheAutoConfiguration.java diff --git a/geode-spring-boot-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/ClientSecurityAutoConfiguration.java b/spring-geode-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/ClientSecurityAutoConfiguration.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/ClientSecurityAutoConfiguration.java rename to spring-geode-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/ClientSecurityAutoConfiguration.java diff --git a/geode-spring-boot-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/ContinuousQueryAutoConfiguration.java b/spring-geode-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/ContinuousQueryAutoConfiguration.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/ContinuousQueryAutoConfiguration.java rename to spring-geode-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/ContinuousQueryAutoConfiguration.java diff --git a/geode-spring-boot-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/FunctionExecutionAutoConfiguration.java b/spring-geode-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/FunctionExecutionAutoConfiguration.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/FunctionExecutionAutoConfiguration.java rename to spring-geode-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/FunctionExecutionAutoConfiguration.java diff --git a/geode-spring-boot-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/GemFireRepositoriesAutoConfigurationRegistrar.java b/spring-geode-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/GemFireRepositoriesAutoConfigurationRegistrar.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/GemFireRepositoriesAutoConfigurationRegistrar.java rename to spring-geode-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/GemFireRepositoriesAutoConfigurationRegistrar.java diff --git a/geode-spring-boot-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/PdxSerializationAutoConfiguration.java b/spring-geode-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/PdxSerializationAutoConfiguration.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/PdxSerializationAutoConfiguration.java rename to spring-geode-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/PdxSerializationAutoConfiguration.java diff --git a/geode-spring-boot-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/PeerSecurityAutoConfiguration.java b/spring-geode-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/PeerSecurityAutoConfiguration.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/PeerSecurityAutoConfiguration.java rename to spring-geode-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/PeerSecurityAutoConfiguration.java diff --git a/geode-spring-boot-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/RepositoriesAutoConfiguration.java b/spring-geode-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/RepositoriesAutoConfiguration.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/RepositoriesAutoConfiguration.java rename to spring-geode-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/RepositoriesAutoConfiguration.java diff --git a/geode-spring-boot-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/SslAutoConfiguration.java b/spring-geode-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/SslAutoConfiguration.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/SslAutoConfiguration.java rename to spring-geode-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/SslAutoConfiguration.java diff --git a/geode-spring-boot-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/package-info.java b/spring-geode-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/package-info.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/package-info.java rename to spring-geode-autoconfigure/src/main/java/org/springframework/geode/boot/autoconfigure/package-info.java diff --git a/geode-spring-boot-autoconfigure/src/main/resources/META-INF/spring.factories b/spring-geode-autoconfigure/src/main/resources/META-INF/spring.factories similarity index 100% rename from geode-spring-boot-autoconfigure/src/main/resources/META-INF/spring.factories rename to spring-geode-autoconfigure/src/main/resources/META-INF/spring.factories diff --git a/geode-spring-boot-autoconfigure/src/test/java/example/app/NonBeanType.java b/spring-geode-autoconfigure/src/test/java/example/app/NonBeanType.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/example/app/NonBeanType.java rename to spring-geode-autoconfigure/src/test/java/example/app/NonBeanType.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/example/app/model/Author.java b/spring-geode-autoconfigure/src/test/java/example/app/model/Author.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/example/app/model/Author.java rename to spring-geode-autoconfigure/src/test/java/example/app/model/Author.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/example/app/model/Book.java b/spring-geode-autoconfigure/src/test/java/example/app/model/Book.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/example/app/model/Book.java rename to spring-geode-autoconfigure/src/test/java/example/app/model/Book.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/example/app/model/ISBN.java b/spring-geode-autoconfigure/src/test/java/example/app/model/ISBN.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/example/app/model/ISBN.java rename to spring-geode-autoconfigure/src/test/java/example/app/model/ISBN.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/example/app/repo/BookRepository.java b/spring-geode-autoconfigure/src/test/java/example/app/repo/BookRepository.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/example/app/repo/BookRepository.java rename to spring-geode-autoconfigure/src/test/java/example/app/repo/BookRepository.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/example/app/service/BookService.java b/spring-geode-autoconfigure/src/test/java/example/app/service/BookService.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/example/app/service/BookService.java rename to spring-geode-autoconfigure/src/test/java/example/app/service/BookService.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/example/app/service/support/CachingBookService.java b/spring-geode-autoconfigure/src/test/java/example/app/service/support/CachingBookService.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/example/app/service/support/CachingBookService.java rename to spring-geode-autoconfigure/src/test/java/example/app/service/support/CachingBookService.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/example/echo/config/EchoClientConfiguration.java b/spring-geode-autoconfigure/src/test/java/example/echo/config/EchoClientConfiguration.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/example/echo/config/EchoClientConfiguration.java rename to spring-geode-autoconfigure/src/test/java/example/echo/config/EchoClientConfiguration.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/example/echo/config/EchoServerConfiguration.java b/spring-geode-autoconfigure/src/test/java/example/echo/config/EchoServerConfiguration.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/example/echo/config/EchoServerConfiguration.java rename to spring-geode-autoconfigure/src/test/java/example/echo/config/EchoServerConfiguration.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/example/geode/cache/EchoCacheLoader.java b/spring-geode-autoconfigure/src/test/java/example/geode/cache/EchoCacheLoader.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/example/geode/cache/EchoCacheLoader.java rename to spring-geode-autoconfigure/src/test/java/example/geode/cache/EchoCacheLoader.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/example/geode/query/cq/event/TemperatureReading.java b/spring-geode-autoconfigure/src/test/java/example/geode/query/cq/event/TemperatureReading.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/example/geode/query/cq/event/TemperatureReading.java rename to spring-geode-autoconfigure/src/test/java/example/geode/query/cq/event/TemperatureReading.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/example/geode/query/cq/event/TemperatureReadingsContinuousQueriesHandler.java b/spring-geode-autoconfigure/src/test/java/example/geode/query/cq/event/TemperatureReadingsContinuousQueriesHandler.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/example/geode/query/cq/event/TemperatureReadingsContinuousQueriesHandler.java rename to spring-geode-autoconfigure/src/test/java/example/geode/query/cq/event/TemperatureReadingsContinuousQueriesHandler.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/example/geode/query/cq/event/TemperatureUnit.java b/spring-geode-autoconfigure/src/test/java/example/geode/query/cq/event/TemperatureUnit.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/example/geode/query/cq/event/TemperatureUnit.java rename to spring-geode-autoconfigure/src/test/java/example/geode/query/cq/event/TemperatureUnit.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/example/java/net/UrlRevealed.java b/spring-geode-autoconfigure/src/test/java/example/java/net/UrlRevealed.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/example/java/net/UrlRevealed.java rename to spring-geode-autoconfigure/src/test/java/example/java/net/UrlRevealed.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/cache/client/SpringBootApacheGeodeClientCacheApplicationIntegrationTests.java b/spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/cache/client/SpringBootApacheGeodeClientCacheApplicationIntegrationTests.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/cache/client/SpringBootApacheGeodeClientCacheApplicationIntegrationTests.java rename to spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/cache/client/SpringBootApacheGeodeClientCacheApplicationIntegrationTests.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/cache/peer/SpringBootApacheGeodePeerCacheApplicationIntegrationTests.java b/spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/cache/peer/SpringBootApacheGeodePeerCacheApplicationIntegrationTests.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/cache/peer/SpringBootApacheGeodePeerCacheApplicationIntegrationTests.java rename to spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/cache/peer/SpringBootApacheGeodePeerCacheApplicationIntegrationTests.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/caching/AutoConfiguredCachingIntegrationTests.java b/spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/caching/AutoConfiguredCachingIntegrationTests.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/caching/AutoConfiguredCachingIntegrationTests.java rename to spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/caching/AutoConfiguredCachingIntegrationTests.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/cq/AutoConfiguredContinuousQueryIntegrationTests.java b/spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/cq/AutoConfiguredContinuousQueryIntegrationTests.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/cq/AutoConfiguredContinuousQueryIntegrationTests.java rename to spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/cq/AutoConfiguredContinuousQueryIntegrationTests.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/function/AutoConfiguredFunctionExecutionsIntegrationTests.java b/spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/function/AutoConfiguredFunctionExecutionsIntegrationTests.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/function/AutoConfiguredFunctionExecutionsIntegrationTests.java rename to spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/function/AutoConfiguredFunctionExecutionsIntegrationTests.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/function/executions/Calculator.java b/spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/function/executions/Calculator.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/function/executions/Calculator.java rename to spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/function/executions/Calculator.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/repository/AutoConfiguredRepositoriesIntegrationTests.java b/spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/repository/AutoConfiguredRepositoriesIntegrationTests.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/repository/AutoConfiguredRepositoriesIntegrationTests.java rename to spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/repository/AutoConfiguredRepositoriesIntegrationTests.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/repository/model/Customer.java b/spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/repository/model/Customer.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/repository/model/Customer.java rename to spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/repository/model/Customer.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/repository/repo/CustomerRepository.java b/spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/repository/repo/CustomerRepository.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/repository/repo/CustomerRepository.java rename to spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/repository/repo/CustomerRepository.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/repository/service/CustomerService.java b/spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/repository/service/CustomerService.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/repository/service/CustomerService.java rename to spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/repository/service/CustomerService.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/security/auth/AbstractAutoConfiguredSecurityContextIntegrationTests.java b/spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/security/auth/AbstractAutoConfiguredSecurityContextIntegrationTests.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/security/auth/AbstractAutoConfiguredSecurityContextIntegrationTests.java rename to spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/security/auth/AbstractAutoConfiguredSecurityContextIntegrationTests.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/security/auth/cloud/AutoConfiguredCloudSecurityContextIntegrationTests.java b/spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/security/auth/cloud/AutoConfiguredCloudSecurityContextIntegrationTests.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/security/auth/cloud/AutoConfiguredCloudSecurityContextIntegrationTests.java rename to spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/security/auth/cloud/AutoConfiguredCloudSecurityContextIntegrationTests.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/security/auth/local/AutoConfiguredLocalSecurityContextIntegrationTests.java b/spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/security/auth/local/AutoConfiguredLocalSecurityContextIntegrationTests.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/security/auth/local/AutoConfiguredLocalSecurityContextIntegrationTests.java rename to spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/security/auth/local/AutoConfiguredLocalSecurityContextIntegrationTests.java diff --git a/geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/security/ssl/AutoConfiguredSslIntegrationTests.java b/spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/security/ssl/AutoConfiguredSslIntegrationTests.java similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/security/ssl/AutoConfiguredSslIntegrationTests.java rename to spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/security/ssl/AutoConfiguredSslIntegrationTests.java diff --git a/geode-spring-boot-autoconfigure/src/test/resources/application-security-cloud.properties b/spring-geode-autoconfigure/src/test/resources/application-security-cloud.properties similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/resources/application-security-cloud.properties rename to spring-geode-autoconfigure/src/test/resources/application-security-cloud.properties diff --git a/geode-spring-boot-autoconfigure/src/test/resources/application-security-local-client.properties b/spring-geode-autoconfigure/src/test/resources/application-security-local-client.properties similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/resources/application-security-local-client.properties rename to spring-geode-autoconfigure/src/test/resources/application-security-local-client.properties diff --git a/geode-spring-boot-autoconfigure/src/test/resources/application-security-local-server.properties b/spring-geode-autoconfigure/src/test/resources/application-security-local-server.properties similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/resources/application-security-local-server.properties rename to spring-geode-autoconfigure/src/test/resources/application-security-local-server.properties diff --git a/geode-spring-boot-autoconfigure/src/test/resources/application-ssl.properties b/spring-geode-autoconfigure/src/test/resources/application-ssl.properties similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/resources/application-ssl.properties rename to spring-geode-autoconfigure/src/test/resources/application-ssl.properties diff --git a/geode-spring-boot-autoconfigure/src/test/resources/application-vcap.properties b/spring-geode-autoconfigure/src/test/resources/application-vcap.properties similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/resources/application-vcap.properties rename to spring-geode-autoconfigure/src/test/resources/application-vcap.properties diff --git a/geode-spring-boot-autoconfigure/src/test/resources/logback.xml b/spring-geode-autoconfigure/src/test/resources/logback.xml similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/resources/logback.xml rename to spring-geode-autoconfigure/src/test/resources/logback.xml diff --git a/geode-spring-boot-autoconfigure/src/test/resources/test-trusted.keystore b/spring-geode-autoconfigure/src/test/resources/test-trusted.keystore similarity index 100% rename from geode-spring-boot-autoconfigure/src/test/resources/test-trusted.keystore rename to spring-geode-autoconfigure/src/test/resources/test-trusted.keystore diff --git a/geode-spring-boot-starter/geode-spring-boot-starter.gradle b/spring-geode-starter/spring-geode-starter.gradle similarity index 85% rename from geode-spring-boot-starter/geode-spring-boot-starter.gradle rename to spring-geode-starter/spring-geode-starter.gradle index 59b3d29c..5107a903 100644 --- a/geode-spring-boot-starter/geode-spring-boot-starter.gradle +++ b/spring-geode-starter/spring-geode-starter.gradle @@ -21,8 +21,8 @@ dependencies { exclude group: "org.springframework.boot", module: "spring-boot-starter-logging" } - compile(project(':geode-spring-boot')) + compile(project(':spring-geode')) - compile(project(':geode-spring-boot-autoconfigure')) + compile(project(':spring-geode-autoconfigure')) } diff --git a/geode-spring-boot/geode-spring-boot.gradle b/spring-geode/spring-geode.gradle similarity index 100% rename from geode-spring-boot/geode-spring-boot.gradle rename to spring-geode/spring-geode.gradle diff --git a/geode-spring-boot/src/main/java/org/springframework/geode/cache/support/CacheLoaderSupport.java b/spring-geode/src/main/java/org/springframework/geode/cache/support/CacheLoaderSupport.java similarity index 100% rename from geode-spring-boot/src/main/java/org/springframework/geode/cache/support/CacheLoaderSupport.java rename to spring-geode/src/main/java/org/springframework/geode/cache/support/CacheLoaderSupport.java diff --git a/geode-spring-boot/src/main/java/org/springframework/geode/config/annotation/DistributedSystemIdConfiguration.java b/spring-geode/src/main/java/org/springframework/geode/config/annotation/DistributedSystemIdConfiguration.java similarity index 100% rename from geode-spring-boot/src/main/java/org/springframework/geode/config/annotation/DistributedSystemIdConfiguration.java rename to spring-geode/src/main/java/org/springframework/geode/config/annotation/DistributedSystemIdConfiguration.java diff --git a/geode-spring-boot/src/main/java/org/springframework/geode/config/annotation/DurableClientConfiguration.java b/spring-geode/src/main/java/org/springframework/geode/config/annotation/DurableClientConfiguration.java similarity index 100% rename from geode-spring-boot/src/main/java/org/springframework/geode/config/annotation/DurableClientConfiguration.java rename to spring-geode/src/main/java/org/springframework/geode/config/annotation/DurableClientConfiguration.java diff --git a/geode-spring-boot/src/main/java/org/springframework/geode/config/annotation/EnableDurableClient.java b/spring-geode/src/main/java/org/springframework/geode/config/annotation/EnableDurableClient.java similarity index 100% rename from geode-spring-boot/src/main/java/org/springframework/geode/config/annotation/EnableDurableClient.java rename to spring-geode/src/main/java/org/springframework/geode/config/annotation/EnableDurableClient.java diff --git a/geode-spring-boot/src/main/java/org/springframework/geode/config/annotation/GroupsConfiguration.java b/spring-geode/src/main/java/org/springframework/geode/config/annotation/GroupsConfiguration.java similarity index 100% rename from geode-spring-boot/src/main/java/org/springframework/geode/config/annotation/GroupsConfiguration.java rename to spring-geode/src/main/java/org/springframework/geode/config/annotation/GroupsConfiguration.java diff --git a/geode-spring-boot/src/main/java/org/springframework/geode/config/annotation/MemberNameConfiguration.java b/spring-geode/src/main/java/org/springframework/geode/config/annotation/MemberNameConfiguration.java similarity index 100% rename from geode-spring-boot/src/main/java/org/springframework/geode/config/annotation/MemberNameConfiguration.java rename to spring-geode/src/main/java/org/springframework/geode/config/annotation/MemberNameConfiguration.java diff --git a/geode-spring-boot/src/main/java/org/springframework/geode/config/annotation/UseDistributedSystemId.java b/spring-geode/src/main/java/org/springframework/geode/config/annotation/UseDistributedSystemId.java similarity index 100% rename from geode-spring-boot/src/main/java/org/springframework/geode/config/annotation/UseDistributedSystemId.java rename to spring-geode/src/main/java/org/springframework/geode/config/annotation/UseDistributedSystemId.java diff --git a/geode-spring-boot/src/main/java/org/springframework/geode/config/annotation/UseGroups.java b/spring-geode/src/main/java/org/springframework/geode/config/annotation/UseGroups.java similarity index 100% rename from geode-spring-boot/src/main/java/org/springframework/geode/config/annotation/UseGroups.java rename to spring-geode/src/main/java/org/springframework/geode/config/annotation/UseGroups.java diff --git a/geode-spring-boot/src/main/java/org/springframework/geode/config/annotation/UseMemberName.java b/spring-geode/src/main/java/org/springframework/geode/config/annotation/UseMemberName.java similarity index 100% rename from geode-spring-boot/src/main/java/org/springframework/geode/config/annotation/UseMemberName.java rename to spring-geode/src/main/java/org/springframework/geode/config/annotation/UseMemberName.java diff --git a/geode-spring-boot/src/main/java/org/springframework/geode/core/env/VcapPropertySource.java b/spring-geode/src/main/java/org/springframework/geode/core/env/VcapPropertySource.java similarity index 100% rename from geode-spring-boot/src/main/java/org/springframework/geode/core/env/VcapPropertySource.java rename to spring-geode/src/main/java/org/springframework/geode/core/env/VcapPropertySource.java diff --git a/geode-spring-boot/src/main/java/org/springframework/geode/core/env/support/CloudCacheService.java b/spring-geode/src/main/java/org/springframework/geode/core/env/support/CloudCacheService.java similarity index 100% rename from geode-spring-boot/src/main/java/org/springframework/geode/core/env/support/CloudCacheService.java rename to spring-geode/src/main/java/org/springframework/geode/core/env/support/CloudCacheService.java diff --git a/geode-spring-boot/src/main/java/org/springframework/geode/core/env/support/Service.java b/spring-geode/src/main/java/org/springframework/geode/core/env/support/Service.java similarity index 100% rename from geode-spring-boot/src/main/java/org/springframework/geode/core/env/support/Service.java rename to spring-geode/src/main/java/org/springframework/geode/core/env/support/Service.java diff --git a/geode-spring-boot/src/main/java/org/springframework/geode/core/env/support/User.java b/spring-geode/src/main/java/org/springframework/geode/core/env/support/User.java similarity index 100% rename from geode-spring-boot/src/main/java/org/springframework/geode/core/env/support/User.java rename to spring-geode/src/main/java/org/springframework/geode/core/env/support/User.java diff --git a/geode-spring-boot/src/main/java/org/springframework/geode/core/util/ObjectUtils.java b/spring-geode/src/main/java/org/springframework/geode/core/util/ObjectUtils.java similarity index 100% rename from geode-spring-boot/src/main/java/org/springframework/geode/core/util/ObjectUtils.java rename to spring-geode/src/main/java/org/springframework/geode/core/util/ObjectUtils.java diff --git a/geode-spring-boot/src/main/java/org/springframework/geode/function/config/AbstractFunctionExecutionAutoConfigurationExtension.java b/spring-geode/src/main/java/org/springframework/geode/function/config/AbstractFunctionExecutionAutoConfigurationExtension.java similarity index 100% rename from geode-spring-boot/src/main/java/org/springframework/geode/function/config/AbstractFunctionExecutionAutoConfigurationExtension.java rename to spring-geode/src/main/java/org/springframework/geode/function/config/AbstractFunctionExecutionAutoConfigurationExtension.java diff --git a/geode-spring-boot/src/main/java/org/springframework/geode/function/config/GemFireFunctionExecutionAutoConfigurationRegistrar.java b/spring-geode/src/main/java/org/springframework/geode/function/config/GemFireFunctionExecutionAutoConfigurationRegistrar.java similarity index 100% rename from geode-spring-boot/src/main/java/org/springframework/geode/function/config/GemFireFunctionExecutionAutoConfigurationRegistrar.java rename to spring-geode/src/main/java/org/springframework/geode/function/config/GemFireFunctionExecutionAutoConfigurationRegistrar.java diff --git a/geode-spring-boot/src/main/java/org/springframework/geode/function/support/AbstractResultCollector.java b/spring-geode/src/main/java/org/springframework/geode/function/support/AbstractResultCollector.java similarity index 100% rename from geode-spring-boot/src/main/java/org/springframework/geode/function/support/AbstractResultCollector.java rename to spring-geode/src/main/java/org/springframework/geode/function/support/AbstractResultCollector.java diff --git a/geode-spring-boot/src/main/java/org/springframework/geode/function/support/SingleResultReturningCollector.java b/spring-geode/src/main/java/org/springframework/geode/function/support/SingleResultReturningCollector.java similarity index 100% rename from geode-spring-boot/src/main/java/org/springframework/geode/function/support/SingleResultReturningCollector.java rename to spring-geode/src/main/java/org/springframework/geode/function/support/SingleResultReturningCollector.java diff --git a/geode-spring-boot/src/main/java/org/springframework/geode/security/support/SecurityManagerProxy.java b/spring-geode/src/main/java/org/springframework/geode/security/support/SecurityManagerProxy.java similarity index 100% rename from geode-spring-boot/src/main/java/org/springframework/geode/security/support/SecurityManagerProxy.java rename to spring-geode/src/main/java/org/springframework/geode/security/support/SecurityManagerProxy.java diff --git a/geode-spring-boot/src/main/java/org/springframework/geode/security/support/SecurityManagerSupport.java b/spring-geode/src/main/java/org/springframework/geode/security/support/SecurityManagerSupport.java similarity index 100% rename from geode-spring-boot/src/main/java/org/springframework/geode/security/support/SecurityManagerSupport.java rename to spring-geode/src/main/java/org/springframework/geode/security/support/SecurityManagerSupport.java diff --git a/geode-spring-boot/src/test/java/org/springframework/geode/config/annotation/DistributedSystemIdConfigurationIntegrationTests.java b/spring-geode/src/test/java/org/springframework/geode/config/annotation/DistributedSystemIdConfigurationIntegrationTests.java similarity index 100% rename from geode-spring-boot/src/test/java/org/springframework/geode/config/annotation/DistributedSystemIdConfigurationIntegrationTests.java rename to spring-geode/src/test/java/org/springframework/geode/config/annotation/DistributedSystemIdConfigurationIntegrationTests.java diff --git a/geode-spring-boot/src/test/java/org/springframework/geode/config/annotation/DurableClientConfigurationIntegrationTests.java b/spring-geode/src/test/java/org/springframework/geode/config/annotation/DurableClientConfigurationIntegrationTests.java similarity index 100% rename from geode-spring-boot/src/test/java/org/springframework/geode/config/annotation/DurableClientConfigurationIntegrationTests.java rename to spring-geode/src/test/java/org/springframework/geode/config/annotation/DurableClientConfigurationIntegrationTests.java diff --git a/geode-spring-boot/src/test/java/org/springframework/geode/config/annotation/GroupsConfigurationIntegrationTests.java b/spring-geode/src/test/java/org/springframework/geode/config/annotation/GroupsConfigurationIntegrationTests.java similarity index 100% rename from geode-spring-boot/src/test/java/org/springframework/geode/config/annotation/GroupsConfigurationIntegrationTests.java rename to spring-geode/src/test/java/org/springframework/geode/config/annotation/GroupsConfigurationIntegrationTests.java diff --git a/geode-spring-boot/src/test/java/org/springframework/geode/config/annotation/MemberNameConfigurationIntegrationTests.java b/spring-geode/src/test/java/org/springframework/geode/config/annotation/MemberNameConfigurationIntegrationTests.java similarity index 100% rename from geode-spring-boot/src/test/java/org/springframework/geode/config/annotation/MemberNameConfigurationIntegrationTests.java rename to spring-geode/src/test/java/org/springframework/geode/config/annotation/MemberNameConfigurationIntegrationTests.java diff --git a/geode-spring-boot/src/test/java/org/springframework/geode/core/env/VcapPropertySourceUnitTests.java b/spring-geode/src/test/java/org/springframework/geode/core/env/VcapPropertySourceUnitTests.java similarity index 100% rename from geode-spring-boot/src/test/java/org/springframework/geode/core/env/VcapPropertySourceUnitTests.java rename to spring-geode/src/test/java/org/springframework/geode/core/env/VcapPropertySourceUnitTests.java diff --git a/geode-spring-boot/src/test/java/org/springframework/geode/core/env/support/CloudCacheServiceUnitTests.java b/spring-geode/src/test/java/org/springframework/geode/core/env/support/CloudCacheServiceUnitTests.java similarity index 100% rename from geode-spring-boot/src/test/java/org/springframework/geode/core/env/support/CloudCacheServiceUnitTests.java rename to spring-geode/src/test/java/org/springframework/geode/core/env/support/CloudCacheServiceUnitTests.java diff --git a/geode-spring-boot/src/test/java/org/springframework/geode/core/env/support/ServiceUnitTests.java b/spring-geode/src/test/java/org/springframework/geode/core/env/support/ServiceUnitTests.java similarity index 100% rename from geode-spring-boot/src/test/java/org/springframework/geode/core/env/support/ServiceUnitTests.java rename to spring-geode/src/test/java/org/springframework/geode/core/env/support/ServiceUnitTests.java diff --git a/geode-spring-boot/src/test/java/org/springframework/geode/core/env/support/UserUnitTests.java b/spring-geode/src/test/java/org/springframework/geode/core/env/support/UserUnitTests.java similarity index 100% rename from geode-spring-boot/src/test/java/org/springframework/geode/core/env/support/UserUnitTests.java rename to spring-geode/src/test/java/org/springframework/geode/core/env/support/UserUnitTests.java diff --git a/geode-spring-boot/src/test/java/org/springframework/geode/core/util/ObjectUtilsUnitTests.java b/spring-geode/src/test/java/org/springframework/geode/core/util/ObjectUtilsUnitTests.java similarity index 100% rename from geode-spring-boot/src/test/java/org/springframework/geode/core/util/ObjectUtilsUnitTests.java rename to spring-geode/src/test/java/org/springframework/geode/core/util/ObjectUtilsUnitTests.java diff --git a/geode-spring-boot/src/test/java/org/springframework/geode/function/support/AbstractResultCollectorUnitTests.java b/spring-geode/src/test/java/org/springframework/geode/function/support/AbstractResultCollectorUnitTests.java similarity index 100% rename from geode-spring-boot/src/test/java/org/springframework/geode/function/support/AbstractResultCollectorUnitTests.java rename to spring-geode/src/test/java/org/springframework/geode/function/support/AbstractResultCollectorUnitTests.java diff --git a/geode-spring-boot/src/test/java/org/springframework/geode/function/support/SingleResultReturningCollectorUnitTests.java b/spring-geode/src/test/java/org/springframework/geode/function/support/SingleResultReturningCollectorUnitTests.java similarity index 100% rename from geode-spring-boot/src/test/java/org/springframework/geode/function/support/SingleResultReturningCollectorUnitTests.java rename to spring-geode/src/test/java/org/springframework/geode/function/support/SingleResultReturningCollectorUnitTests.java diff --git a/geode-spring-boot/src/test/java/org/springframework/geode/security/support/SecurityManagerProxyIntegrationTests.java b/spring-geode/src/test/java/org/springframework/geode/security/support/SecurityManagerProxyIntegrationTests.java similarity index 100% rename from geode-spring-boot/src/test/java/org/springframework/geode/security/support/SecurityManagerProxyIntegrationTests.java rename to spring-geode/src/test/java/org/springframework/geode/security/support/SecurityManagerProxyIntegrationTests.java diff --git a/geode-spring-boot/src/test/java/org/springframework/geode/security/support/SecurityManagerProxyUnitTests.java b/spring-geode/src/test/java/org/springframework/geode/security/support/SecurityManagerProxyUnitTests.java similarity index 100% rename from geode-spring-boot/src/test/java/org/springframework/geode/security/support/SecurityManagerProxyUnitTests.java rename to spring-geode/src/test/java/org/springframework/geode/security/support/SecurityManagerProxyUnitTests.java