Add project page

This commit is contained in:
David Turanski
2013-09-07 16:05:42 -07:00
committed by Christoph Strobl
parent bf15ee8a6d
commit 15773580a7
5 changed files with 121 additions and 5 deletions

View File

@@ -10,20 +10,20 @@ redcarpet:
### The following properties will change on a project-by-project basis
# Context path in the remote website (usually /<project>), 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

3
_includes/build.gradle Normal file
View File

@@ -0,0 +1,3 @@
dependencies {
compile '{@= groupId @}:spring-data-gemfire:{@= version @}'
}

18
_includes/pom.xml Normal file
View File

@@ -0,0 +1,18 @@
<dependencies>
<dependency>
<groupId>{@= groupId @}</groupId>
<artifactId>spring-data-gemfire</artifactId>
<version>{@= version @}</version>
</dependency>
</dependencies>
{@ if (repository) { @}
<repositories>
<repository>
<id>{@= repository.id @}</id>
<name>{@= repository.name @}</name>
<url>{@= repository.url @}</url>
<snapshots>
<enabled>{@= repository.snapshotsEnabled @}</enabled>
</snapshots>
</repository>
</repositories>{@ } @}

BIN
img/project-icon-large.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

95
index.html Normal file
View File

@@ -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
---
<!DOCTYPE HTML>
<html lang="en-US">
<!-- Specify the parent of this project (or delete if none) to influence the rendering of the breadcrumb -->
{% 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
<span id="quick-start"></span>
## 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 %}
</html>