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