|
31 | 31 | * Configuration of dependencies for a specific project.
|
32 | 32 | *
|
33 | 33 | * @author Mark Paluch
|
| 34 | + * @author Jens Schauder |
34 | 35 | */
|
35 | 36 | public class ProjectDependencies implements Streamable<ProjectDependencies.ProjectDependency> {
|
36 | 37 |
|
@@ -99,6 +100,22 @@ public class ProjectDependencies implements Streamable<ProjectDependencies.Proje
|
99 | 100 | ProjectDependency.ofProperty("elasticsearch-java", Dependencies.ELASTICSEARCH_REST_CLIENT));
|
100 | 101 |
|
101 | 102 | config.add(Projects.LDAP, ProjectDependency.ofProperty("spring-ldap", Dependencies.SPRING_LDAP));
|
| 103 | + |
| 104 | + config.add(Projects.RELATIONAL, ProjectDependency.ofProperty("h2.version", Dependencies.H2)); |
| 105 | + config.add(Projects.RELATIONAL, ProjectDependency.ofProperty("hsqldb.version", Dependencies.HSQLDB)); |
| 106 | + config.add(Projects.RELATIONAL, ProjectDependency.ofProperty("db2.version", Dependencies.DB2_JDBC)); |
| 107 | + config.add(Projects.RELATIONAL, ProjectDependency.ofProperty("mariadb-java-client.version", Dependencies.MARIADB_JDBC)); |
| 108 | + config.add(Projects.RELATIONAL, ProjectDependency.ofProperty("mssql.version", Dependencies.MS_SQLSERVER_JDBC)); |
| 109 | + config.add(Projects.RELATIONAL, ProjectDependency.ofProperty("mysql-connector-java.version", Dependencies.MYSQL_JDBC)); |
| 110 | + config.add(Projects.RELATIONAL, ProjectDependency.ofProperty("postgresql.version", Dependencies.POSTGRES_JDBC)); |
| 111 | + config.add(Projects.RELATIONAL, ProjectDependency.ofProperty("oracle.version", Dependencies.ORACLE_JDBC)); |
| 112 | + |
| 113 | + config.add(Projects.RELATIONAL, ProjectDependency.ofProperty("r2dbc-postgresql.version", Dependencies.POSTGRES_R2DBC)); |
| 114 | + config.add(Projects.RELATIONAL, ProjectDependency.ofProperty("r2dbc-h2.version", Dependencies.H2_R2DBC)); |
| 115 | + config.add(Projects.RELATIONAL, ProjectDependency.ofProperty("r2dbc-mariadb.version", Dependencies.MARIADB_R2DBC)); |
| 116 | + config.add(Projects.RELATIONAL, ProjectDependency.ofProperty("r2dbc-mssql.version", Dependencies.MS_SQLSERVER_R2DBC)); |
| 117 | + config.add(Projects.RELATIONAL, ProjectDependency.ofProperty("r2dbc-mysql.version", Dependencies.MYSQL_R2DBC)); |
| 118 | + config.add(Projects.RELATIONAL, ProjectDependency.ofProperty("oracle-r2dbc.version", Dependencies.ORACLE_R2DBC)); |
102 | 119 | }
|
103 | 120 |
|
104 | 121 | private final List<ProjectDependency> dependencies;
|
|
0 commit comments