From 2e7d5c5807c4674ab697f484fd497dda7996a79d Mon Sep 17 00:00:00 2001 From: John Blum Date: Tue, 6 Feb 2018 15:30:10 -0800 Subject: [PATCH] Rename spring-boot-data-gemfire module to spring-boot-starter-data-gemfire. Rename spring-boot-data-geode module to spring-boot-starter-data-geode. --- .../spring-boot-starter-data-gemfire.gradle | 2 +- .../spring-boot-starter-data-geode.gradle | 0 .../autoconfigure/GeodeCachingProviderAutoConfiguration.java | 0 .../geode/autoconfigure/GeodeClientCacheAutoConfiguration.java | 0 .../autoconfigure/GeodeContinuousQueryAutoConfiguration.java | 0 .../autoconfigure/GeodeFunctionExecutionAutoConfiguration.java | 0 .../geode/autoconfigure/GeodeRepositoriesAutoConfiguration.java | 0 .../GeodeRepositoriesAutoConfigurationRegistrar.java | 0 .../boot/data/geode/autoconfigure/package-info.java | 0 .../src/main/resources/META-INF/spring.factories | 0 .../SpringBootApacheGeodeCacheClientApplicationTests.java | 0 11 files changed, 1 insertion(+), 1 deletion(-) rename spring-boot-data-gemfire/spring-boot-data-gemfire.gradle => spring-boot-starter-data-gemfire/spring-boot-starter-data-gemfire.gradle (83%) rename spring-boot-data-geode/spring-boot-data-geode.gradle => spring-boot-starter-data-geode/spring-boot-starter-data-geode.gradle (100%) rename {spring-boot-data-geode => spring-boot-starter-data-geode}/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeCachingProviderAutoConfiguration.java (100%) rename {spring-boot-data-geode => spring-boot-starter-data-geode}/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeClientCacheAutoConfiguration.java (100%) rename {spring-boot-data-geode => spring-boot-starter-data-geode}/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeContinuousQueryAutoConfiguration.java (100%) rename {spring-boot-data-geode => spring-boot-starter-data-geode}/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeFunctionExecutionAutoConfiguration.java (100%) rename {spring-boot-data-geode => spring-boot-starter-data-geode}/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeRepositoriesAutoConfiguration.java (100%) rename {spring-boot-data-geode => spring-boot-starter-data-geode}/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeRepositoriesAutoConfigurationRegistrar.java (100%) rename {spring-boot-data-geode => spring-boot-starter-data-geode}/src/main/java/org/springframework/boot/data/geode/autoconfigure/package-info.java (100%) rename {spring-boot-data-geode => spring-boot-starter-data-geode}/src/main/resources/META-INF/spring.factories (100%) rename {spring-boot-data-geode => spring-boot-starter-data-geode}/src/test/java/org/springframework/boot/data/geode/cache/client/SpringBootApacheGeodeCacheClientApplicationTests.java (100%) diff --git a/spring-boot-data-gemfire/spring-boot-data-gemfire.gradle b/spring-boot-starter-data-gemfire/spring-boot-starter-data-gemfire.gradle similarity index 83% rename from spring-boot-data-gemfire/spring-boot-data-gemfire.gradle rename to spring-boot-starter-data-gemfire/spring-boot-starter-data-gemfire.gradle index 1d55d24f..751761eb 100644 --- a/spring-boot-data-gemfire/spring-boot-data-gemfire.gradle +++ b/spring-boot-starter-data-gemfire/spring-boot-starter-data-gemfire.gradle @@ -6,7 +6,7 @@ description = "Spring Boot for Pivotal GemFire" dependencies { - compile(project(':spring-boot-data-geode')) { + compile(project(':spring-boot-starter-data-geode')) { exclude group: "org.springframework.data", module: "spring-data-geode" } diff --git a/spring-boot-data-geode/spring-boot-data-geode.gradle b/spring-boot-starter-data-geode/spring-boot-starter-data-geode.gradle similarity index 100% rename from spring-boot-data-geode/spring-boot-data-geode.gradle rename to spring-boot-starter-data-geode/spring-boot-starter-data-geode.gradle diff --git a/spring-boot-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeCachingProviderAutoConfiguration.java b/spring-boot-starter-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeCachingProviderAutoConfiguration.java similarity index 100% rename from spring-boot-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeCachingProviderAutoConfiguration.java rename to spring-boot-starter-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeCachingProviderAutoConfiguration.java diff --git a/spring-boot-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeClientCacheAutoConfiguration.java b/spring-boot-starter-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeClientCacheAutoConfiguration.java similarity index 100% rename from spring-boot-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeClientCacheAutoConfiguration.java rename to spring-boot-starter-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeClientCacheAutoConfiguration.java diff --git a/spring-boot-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeContinuousQueryAutoConfiguration.java b/spring-boot-starter-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeContinuousQueryAutoConfiguration.java similarity index 100% rename from spring-boot-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeContinuousQueryAutoConfiguration.java rename to spring-boot-starter-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeContinuousQueryAutoConfiguration.java diff --git a/spring-boot-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeFunctionExecutionAutoConfiguration.java b/spring-boot-starter-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeFunctionExecutionAutoConfiguration.java similarity index 100% rename from spring-boot-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeFunctionExecutionAutoConfiguration.java rename to spring-boot-starter-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeFunctionExecutionAutoConfiguration.java diff --git a/spring-boot-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeRepositoriesAutoConfiguration.java b/spring-boot-starter-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeRepositoriesAutoConfiguration.java similarity index 100% rename from spring-boot-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeRepositoriesAutoConfiguration.java rename to spring-boot-starter-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeRepositoriesAutoConfiguration.java diff --git a/spring-boot-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeRepositoriesAutoConfigurationRegistrar.java b/spring-boot-starter-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeRepositoriesAutoConfigurationRegistrar.java similarity index 100% rename from spring-boot-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeRepositoriesAutoConfigurationRegistrar.java rename to spring-boot-starter-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/GeodeRepositoriesAutoConfigurationRegistrar.java diff --git a/spring-boot-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/package-info.java b/spring-boot-starter-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/package-info.java similarity index 100% rename from spring-boot-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/package-info.java rename to spring-boot-starter-data-geode/src/main/java/org/springframework/boot/data/geode/autoconfigure/package-info.java diff --git a/spring-boot-data-geode/src/main/resources/META-INF/spring.factories b/spring-boot-starter-data-geode/src/main/resources/META-INF/spring.factories similarity index 100% rename from spring-boot-data-geode/src/main/resources/META-INF/spring.factories rename to spring-boot-starter-data-geode/src/main/resources/META-INF/spring.factories diff --git a/spring-boot-data-geode/src/test/java/org/springframework/boot/data/geode/cache/client/SpringBootApacheGeodeCacheClientApplicationTests.java b/spring-boot-starter-data-geode/src/test/java/org/springframework/boot/data/geode/cache/client/SpringBootApacheGeodeCacheClientApplicationTests.java similarity index 100% rename from spring-boot-data-geode/src/test/java/org/springframework/boot/data/geode/cache/client/SpringBootApacheGeodeCacheClientApplicationTests.java rename to spring-boot-starter-data-geode/src/test/java/org/springframework/boot/data/geode/cache/client/SpringBootApacheGeodeCacheClientApplicationTests.java