diff --git a/.classpath b/.classpath deleted file mode 100644 index 4bbecdf4..00000000 --- a/.classpath +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/.gitignore b/.gitignore index fed086c6..effab4c9 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,7 @@ pom.xml *.ipr *.iws *.log +.classpath /samples/hello-world/vf.gf.dmn-events.cfg /samples/hello-world/vf.gf.dmn-license.cfg diff --git a/.project b/.project deleted file mode 100644 index 45540b08..00000000 --- a/.project +++ /dev/null @@ -1,16 +0,0 @@ - - - spring-data-gemfire - Spring Data GemFire - - - org.eclipse.jdt.core.javanature - - - - org.eclipse.jdt.core.javabuilder - - - - - diff --git a/.settings/org.eclipse.jdt.core.prefs b/.settings/org.eclipse.jdt.core.prefs deleted file mode 100644 index 19ddd247..00000000 --- a/.settings/org.eclipse.jdt.core.prefs +++ /dev/null @@ -1,13 +0,0 @@ -# -#Tue Dec 13 21:19:50 EET 2011 -org.eclipse.jdt.core.compiler.debug.localVariable=generate -org.eclipse.jdt.core.compiler.compliance=1.5 -org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve -org.eclipse.jdt.core.compiler.debug.sourceFile=generate -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 -org.eclipse.jdt.core.compiler.problem.enumIdentifier=error -org.eclipse.jdt.core.compiler.debug.lineNumber=generate -eclipse.preferences.version=1 -org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled -org.eclipse.jdt.core.compiler.source=1.5 -org.eclipse.jdt.core.compiler.problem.assertIdentifier=error diff --git a/README.md b/README.md index 77915e27..30afbd0f 100644 --- a/README.md +++ b/README.md @@ -4,12 +4,12 @@ Spring Data GemFire The primary goal of the [Spring GemFire](http://www.springsource.org/spring-gemfire) project is to make it easier to build highly scalable Spring-powered applications using [GemFire](http://www.gemstone.com/products/gemfire) as a distributed [data management](http://www.springsource.com/products/data-management) platform. -Examples --------- +# Examples + For examples on using the Spring GemFire, see the samples project. -Getting Help ------------- +# Getting Help + Read the main project [website](http://www.springsource.org/spring-gemfire) and the [User Guide](http://static.springsource.org/spring-gemfire/docs/current/reference/html/). Look at the source code and the [JavaDocs](http://static.springsource.org/spring-gemfire/docs/current/api/). For more detailed questions, use the [forum](http://forum.springsource.org/forumdisplay.php?f=80). If you are new to Spring as well as to Spring GemFire, look for information about [Spring projects](http://www.springsource.org/projects). @@ -92,8 +92,24 @@ region.put(Long.valueOf(1), new Person("Jane", "Smith")); template.query("person = 1"); ~~~~~ -Contributing to Spring GemFire ------------------------------- +# Building + +Spring GemFire uses Gradle as its building system. To compile the project, simply type from the root folder + + gradlew + +To generate IDE-specific files, use + + gradlew eclipse + +or + + gradlew idea + +depending on your editor. + +# Contributing + Here are some ways for you to get involved in the community: diff --git a/gradle.properties b/gradle.properties index 68d70513..abf494ea 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,7 +2,7 @@ # Logging log4jVersion = 1.2.16 -slf4jVersion = 1.6.1 +slf4jVersion = 1.6.4 # Common libraries springVersion = 3.1.0.RELEASE @@ -21,4 +21,4 @@ gemfire.range = "[6.5, 7.0)" # -------------------- # Project wide version # -------------------- -springGemfireVersion=1.1.0.BUILD-SNAPSHOT \ No newline at end of file +springGemfireVersion=1.1.0.RELEASE \ No newline at end of file diff --git a/samples/hello-world/gradle.properties b/samples/hello-world/gradle.properties index 968c85ca..965ffbed 100644 --- a/samples/hello-world/gradle.properties +++ b/samples/hello-world/gradle.properties @@ -1,3 +1,3 @@ junitVersion = 4.8.1 -springVersion = 3.1.0.RC1 -version = 1.1.0.BUILD-SNAPSHOT +springVersion = 3.1.0.RELEASE +version = 1.1.0.RELEASE