#68 - Add Spring Data JDBC to dev tools.

This commit is contained in:
Mark Paluch
2018-02-05 10:04:05 +01:00
parent 4fe9fb7bf0
commit 4158b7822e
2 changed files with 8 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2014 the original author or authors.
* Copyright 2014-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -27,10 +27,11 @@ import org.jgrapht.traverse.TopologicalOrderIterator;
/**
* @author Oliver Gierke
* @author Mark Paluch
*/
public class Projects {
public static final Project COMMONS, BUILD, REST, JPA, MONGO_DB, NEO4J, SOLR, COUCHBASE, CASSANDRA, ELASTICSEARCH,
public static final Project COMMONS, BUILD, REST, JDBC, JPA, MONGO_DB, NEO4J, SOLR, COUCHBASE, CASSANDRA, ELASTICSEARCH,
REDIS, GEMFIRE, KEY_VALUE, ENVERS, LDAP, GEODE;
public static final List<Project> PROJECTS;
@@ -69,6 +70,8 @@ public class Projects {
REDIS = new Project("DATAREDIS", "Redis").withDependencies(KEY_VALUE);
JDBC = new Project("DATAJDBC", "JDBC");
GEMFIRE = new Project("SGF", "Gemfire") //
.withDependencies(COMMONS)//
.withSkipTests(true);

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2014 the original author or authors.
* Copyright 2014-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -26,6 +26,7 @@ import org.springframework.data.release.model.Train.Iterations;
/**
* @author Oliver Gierke
* @author Mark Paluch
*/
public class ReleaseTrains {
@@ -54,7 +55,7 @@ public class ReleaseTrains {
Iterations iterations = new Iterations(M1, M2, M3, M4, RC1, RC2, RC3, GA, SR1, SR2, SR3, SR4, SR5, SR6, SR7);
KAY = INGALLS.next("Kay", Transition.MAJOR, new Module(GEODE, "2.0")).withIterations(iterations);
LOVELACE = KAY.next("Lovelace", Transition.MINOR);
LOVELACE = KAY.next("Lovelace", Transition.MINOR, new Module(JDBC, "1.0"));
// Trains