diff --git a/release-tools/src/main/java/org/springframework/data/release/model/Projects.java b/release-tools/src/main/java/org/springframework/data/release/model/Projects.java index 1d12add..688d7a6 100644 --- a/release-tools/src/main/java/org/springframework/data/release/model/Projects.java +++ b/release-tools/src/main/java/org/springframework/data/release/model/Projects.java @@ -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 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); diff --git a/release-tools/src/main/java/org/springframework/data/release/model/ReleaseTrains.java b/release-tools/src/main/java/org/springframework/data/release/model/ReleaseTrains.java index 20dcdf2..b13d278 100644 --- a/release-tools/src/main/java/org/springframework/data/release/model/ReleaseTrains.java +++ b/release-tools/src/main/java/org/springframework/data/release/model/ReleaseTrains.java @@ -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