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.
This commit is contained in:
John Blum
2018-06-19 18:35:09 -07:00
parent c830817ed3
commit 330dc7fec3
84 changed files with 5 additions and 5 deletions

View File

@@ -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"
}

View File

@@ -20,7 +20,7 @@ dependencyManagement {
dependencies {
compile project(":geode-spring-boot")
compile project(":spring-geode")
testCompile "org.assertj:assertj-core"
testCompile "junit:junit"

View File

@@ -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'))
}