SGF-732 - Change branding from Spring Data GemFire to Spring Data for Pivotal GemFire.

Change branding from 'Gemfire' or 'GemFire' to 'Pivotal GemFire'.
This commit is contained in:
John Blum
2018-05-07 23:04:18 -07:00
parent 593b6ad0a0
commit 5babdfd3fb
342 changed files with 1855 additions and 1856 deletions

View File

@@ -1,25 +1,25 @@
Spring Data GemFire
===================
Spring Data for Pivotal GemFire
===============================
The primary goal of the [Spring Data GemFire](http://projects.spring.io/spring-data-gemfire) project
is to make it easier to build highly scalable, _Spring_ powered applications using [Pivotal GemFire](https://pivotal.io/pivotal-gemfire)
The primary goal of the [Spring Data for Pivotal GemFire](http://projects.spring.io/spring-data-gemfire) project
is to make it easier to build highly scalable, _Spring_ powered applications using [Pivotal GemFire](https://pivotal.io/pivotal-gemfire)
as the underlying distributed, in-memory data management platform.
# Examples
For examples on using the _Spring Data GemFire_, see the
For examples on using the _Spring Data for Pivotal GemFire_, see the
[spring-gemfire-examples](https://github.com/SpringSource/spring-gemfire-examples) project.
# Getting Help
Read the main project [website](http://projects.spring.io/spring-data-gemfire/) along with
Read the main project [website](http://projects.spring.io/spring-data-gemfire/) along with
the [User Guide](http://docs.spring.io/spring-data-gemfire/docs/current/reference/html/).
Look at the source code and the [JavaDocs](http://docs.spring.io/spring-data-gemfire/docs/current/api/).
For more detailed questions, visit [_StackOverflow_](https://stackoverflow.com/questions/tagged/spring-data-gemfire).
If you are new to _Spring_ as well as _Spring Data GemFire_, look for information about
If you are new to _Spring_ as well as _Spring Data for Pivotal GemFire_, look for information about
[_Spring_ projects](http://spring.io/projects).
Quick Start
@@ -66,7 +66,7 @@ dependencies {
}
~~~~~
* Configure a GemFire cache and Region (REPLICATE, PARTITION and so on):
* Configure a Pivotal GemFire cache and Region (REPLICATE, PARTITION and so on):
~~~~~ xml
<beans xmlns="http://www.springframework.org/schema/beans"
@@ -90,7 +90,7 @@ dependencies {
region.put(Long.valueOf(1), new Person("Jon", "Doe"));
~~~~~
* And/Or `GemFireTemplate` to interact with GemFire:
* And/Or `GemFireTemplate` to interact with Pivotal GemFire:
~~~~~ java
template.query("person = 1");
@@ -98,8 +98,8 @@ template.query("person = 1");
# Building
_Spring Data GemFire_ uses Maven as its build system. To compile the project, simply type the following Maven command
from the root folder:
_Spring Data for Pivotal GemFire_ uses Maven as its build system. To compile the project, simply type
the following Maven command from the root folder:
mvn clean install
@@ -108,18 +108,18 @@ from the root folder:
Here are some ways for you to get involved in the community:
* Get involved with the _Spring_ community on the _Spring_ Community Forums (_StackOverflow_).
Please help out on the [forum](https://stackoverflow.com/questions/tagged/spring-data-gemfire)
* Get involved with the _Spring_ community on the _Spring_ Community Forums (_StackOverflow_).
Please help out on the [forum](https://stackoverflow.com/questions/tagged/spring-data-gemfire)
by responding to questions and joining the debate.
* Create [JIRA](https://jira.spring.io/browse/SGF) tickets for bugs and new features and comment and vote on the bugs
* Create [JIRA](https://jira.spring.io/browse/SGF) tickets for bugs and new features and comment and vote on the bugs
you are interested in.
* GitHub is for social coding. If you want to write code, we encourage contributions through pull requests
from [forks of this repository](http://help.github.com/forking/). If you want to contribute code this way,
* GitHub is for social coding. If you want to write code, we encourage contributions through pull requests
from [forks of this repository](http://help.github.com/forking/). If you want to contribute code this way,
please reference a JIRA ticket as well covering the specific issue you are addressing.
* Watch for upcoming articles on _Spring_ by [subscribing](http://spring.io/blog) to spring.io.
Before we accept a non-trivial patch or pull request we will need you to
[sign the Contributor License Agreement](https://cla.pivotal.io/sign/spring). Signing the contributors agreement
does not grant anyone commit rights to the main repository, but it does mean that we can accept your contributions,
and you will get an author credit if we do. If you forget to do so, you'll be reminded when you submit a pull request.
Before we accept a non-trivial patch or pull request we will need you to
[sign the Contributor License Agreement](https://cla.pivotal.io/sign/spring). Signing the contributors agreement
does not grant anyone commit rights to the main repository, but it does mean that we can accept your contributions,
and you will get an author credit if we do. If you forget to do so, you'll be reminded when you submit a pull request.
Active contributors might be asked to join the core team, and given the ability to merge pull requests.