Tweaked project model to let Redis depend on Commons.

In preparation of the dependency of Redis to Spring Data Commons we now list that dependency.
This commit is contained in:
Oliver Gierke
2016-02-10 17:29:02 +01:00
parent 57ea732e2c
commit 8ca695e304

View File

@@ -50,7 +50,7 @@ public class Projects {
CASSANDRA = new Project("DATACASS", "Cassandra", Arrays.asList(COMMONS),
ArtifactCoordinates.NONE.artifacts("spring-cql"));
ELASTICSEARCH = new Project("DATAES", "Elasticsearch", Arrays.asList(COMMONS));
REDIS = new Project("DATAREDIS", "Redis", Collections.emptyList());
REDIS = new Project("DATAREDIS", "Redis", Arrays.asList(COMMONS));
GEMFIRE = new Project("SGF", "Gemfire", Arrays.asList(COMMONS));
REST = new Project("DATAREST", "REST", Arrays.asList(COMMONS, JPA, MONGO_DB, NEO4J, GEMFIRE, SOLR, CASSANDRA),