From c149c0a00555091bdd4158449ba2011d626860b2 Mon Sep 17 00:00:00 2001 From: Costin Leau Date: Sun, 13 Nov 2011 18:25:47 +0200 Subject: [PATCH] + align maven naming to Spring Data project --- build.gradle | 4 ++-- docs/src/info/changelog.txt | 3 ++- maven.gradle | 2 +- samples/hello-world/build.gradle | 2 +- settings.gradle | 2 +- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index 2d376a18..c06c2abd 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ // used for artifact names, building doc upload urls, etc. -description = 'Spring GemFire' +description = 'Spring Data GemFire' abbreviation = 'SGF' apply plugin: 'base' @@ -209,7 +209,7 @@ task uploadDist(type: org.springframework.gradle.tasks.S3DistroUpload, dependsOn group = "Distribution" archiveFile = dist.archivePath projectKey = 'SGF' - projectName = 'Spring GemFire' + projectName = 'Spring Data GemFire' } defaultTasks 'clean', 'build' \ No newline at end of file diff --git a/docs/src/info/changelog.txt b/docs/src/info/changelog.txt index 32293cc0..244b1cc2 100644 --- a/docs/src/info/changelog.txt +++ b/docs/src/info/changelog.txt @@ -2,12 +2,13 @@ SPRING GEMFIRE INTEGRATION CHANGELOG ==================================== http://www.springsource.org/spring-gemfire -Changes in version 1.1.0.RC1 (2011-mm-dd) +Changes in version 1.1.0.RC1 (2011-11-13) ----------------------------------------- General * Upgraded to GemFire 6.6.1 * Introduced PDX options for 'cache' and 'client-cache' elements +* Aligned Maven naming to Spring Data project - changed them to 'org.springframework.data'/'spring-data-gemfire' Changes in version 1.1.0.M3 (2011-09-25) diff --git a/maven.gradle b/maven.gradle index b319283c..3707b53f 100644 --- a/maven.gradle +++ b/maven.gradle @@ -101,7 +101,7 @@ def customizePom(pom) { } }*.optional = true - p.groupId = "org.springframework.data.gemfire" + p.groupId = "org.springframework.data" } pom.project { diff --git a/samples/hello-world/build.gradle b/samples/hello-world/build.gradle index 551a1bd5..0047267e 100644 --- a/samples/hello-world/build.gradle +++ b/samples/hello-world/build.gradle @@ -22,7 +22,7 @@ repositories { } dependencies { - compile "org.springframework.data.gemfire:spring-gemfire:$version" + compile "org.springframework.data:spring-data-gemfire:$version" compile "javax.inject:javax.inject:1" compile "javax.annotation:jsr250-api:1.0" diff --git a/settings.gradle b/settings.gradle index 2736d478..c493e64a 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,4 +1,4 @@ -rootProject.name = 'spring-gemfire' +rootProject.name = 'spring-data-gemfire' include 'docs'