diff --git a/_config.yml b/_config.yml index ddc41fb5..6edabc6d 100644 --- a/_config.yml +++ b/_config.yml @@ -10,20 +10,20 @@ redcarpet: ### The following properties will change on a project-by-project basis # Context path in the remote website (usually /), will be prepended to absolute URLs for static resources -baseurl: /gh-pages +baseurl: /spring-data-gemfire # Name of the project for display in places like page titles -name: Spring Framework +name: Spring Data Gemfire # ID of the project in the metadata API at spring.io (if this is not a # valid project ID the javascript widgets in the home page will not work) -project: spring-framework +project: spring-data-gemfire # Project github URL -github_repo_url: http://github.com/spring-projects/spring-framework +github_repo_url: http://github.com/spring-projects/spring-data-gemfire # Project forum URL -forum: http://forum.spring.io/forum/spring-projects/container +forum: http://forum.spring.io/forum/spring-projects/data/gemfire # If you want to include a custom pom.xml or gradle template set these value to true and add _include files custom_pom_template: false diff --git a/_includes/build.gradle b/_includes/build.gradle new file mode 100644 index 00000000..8d4899a4 --- /dev/null +++ b/_includes/build.gradle @@ -0,0 +1,3 @@ +dependencies { + compile '{@= groupId @}:spring-data-gemfire:{@= version @}' +} diff --git a/_includes/pom.xml b/_includes/pom.xml new file mode 100644 index 00000000..f685fac2 --- /dev/null +++ b/_includes/pom.xml @@ -0,0 +1,18 @@ + + + {@= groupId @} + spring-data-gemfire + {@= version @} + + +{@ if (repository) { @} + + + {@= repository.id @} + {@= repository.name @} + {@= repository.url @} + + {@= repository.snapshotsEnabled @} + + +{@ } @} \ No newline at end of file diff --git a/img/project-icon-large.png b/img/project-icon-large.png new file mode 100644 index 00000000..f9b4fec1 Binary files /dev/null and b/img/project-icon-large.png differ diff --git a/index.html b/index.html new file mode 100644 index 00000000..dbb395af --- /dev/null +++ b/index.html @@ -0,0 +1,95 @@ +--- +# The name of your project +title: Spring Data Gemfire + +badges: + + # Specify your project's twitter handle, if any. Delete if none. + #twitter: SpringData + + # Customize your project's badges. Delete any entries that do not apply. + custom: + - name: Source (GitHub) + url: https://github.com/spring-projects/spring-data-gemfire + icon: github + + - name: Issues (JIRA) + url: http://jira.springsource.org/browse/SGF + icon: tracking + + - name: CI (Bamboo) + url: https://build.springsource.org/browse/SGF + icon: ci + + - name: Forum + url: http://forum.spring.io/forum/spring-projects/data/gemfire + icon: forum + + - name: StackOverflow + url: http://stackoverflow.com/questions/tagged/spring-data-gemfire + icon: stackoverflow + + # - name: Metrics (SonarQube) + # url: https://sonar.springsource.org/dashboard/index/org.springframework.data:spring-data-jpa + # icon: metrics + +--- + + + + +{% capture parent_link %} +[Spring Data]({{ site.projects_site_url }}/spring-data) +{% endcapture %} + + +{% capture billboard_description %} + +**PROJECT DESCRIPTION** The primary goal of the Spring Data GemFire project is to make it easier to build highly scalable Spring-powered applications using [Pivotal GemFire](http://gopivotal.com/pivotal-products/pivotal-data-fabric/pivotal-gemfire) as a distributed data management platform. + +{% endcapture %} + +{% capture main_content %} + +Spring Data GemFire brings the full power of the Spring framework to your GemFire applications. + +## Features + +* XML namespace support to [create and configure GemFire resources declaratively with Spring](http://docs.spring.io/spring-data-gemfire/docs/current/reference/html/bootstrap.html) +* [Spring Data Repositories backed by GemFire](http://docs.spring.io/spring-data-gemfire/docs/current/reference/html/gemfire-repositories.html) +* [Annotatations for Function Executions](http://docs.spring.io/spring-data-gemfire/docs/current/reference/html/function-annotations.html) +* Continuous Query Support +* SpringSource ToolSuite Spring Project Templates for GemFire + + +## Quick Start + +{% include download_widget.md %} + +{% endcapture %} + +{% capture related_resources %} + +### Sample Projects + +* [Spring Data Gemfire Examples](https://github.com/springsource/spring-gemfire-examples) + +### Getting Started Guides + +* [Accessing Data with Spring Data GemFire](https://spring.io/guides/gs/accessing-data-gemfire/) +* [Caching Data with Spring Data GemFire](https://spring.io/guides/gs/caching-gemfire/) +### Tutorials + +* + +### Additional Resources + +* [GemFire Product Documentation](https://www.vmware.com/support/pubs/vfabric-gemfire.html) +* [GemFire API](https://www.vmware.com/support/pubs/vfabric-apiref.html#gemfireapi) +* [Spring Data Book](http://shop.oreilly.com/product/0636920024767.do) + +{% endcapture %} + + +{% include project_page.html %} + \ No newline at end of file