Skip to content

Commit 797dc05

Browse files
committed
integration test
1 parent 52e1339 commit 797dc05

File tree

156 files changed

+9408
-4187
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

156 files changed

+9408
-4187
lines changed

spring-data-jdbc/README.adoc

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ image:https://spring.io/badges/spring-data-jdbc/snapshot.svg["Spring Data JDBC",
33

44
= Spring Data JDBC
55

6-
The primary goal of the http://projects.spring.io/spring-data[Spring Data] project is to make it easier to build Spring-powered applications that use data access technologies. *Spring Data JDBC* offers the popular Repository abstraction based on JDBC.
6+
The primary goal of the https://projects.spring.io/spring-data[Spring Data] project is to make it easier to build Spring-powered applications that use data access technologies. *Spring Data JDBC* offers the popular Repository abstraction based on JDBC.
77

88
It aims at being conceptually easy.
99
In order to achieve this it does NOT offer caching, lazy loading, write behind or many other features of JPA.
@@ -79,14 +79,3 @@ mvn test -Pall-dbs
7979
----
8080

8181
This will execute the unit tests, and all the integration tests with all the databases we currently support for testing. Running the integration-tests depends on Docker.
82-
83-
== Contributing to Spring Data JDBC
84-
85-
Here are some ways for you to get involved in the community:
86-
87-
* Get involved with the Spring community by helping out on http://stackoverflow.com/questions/tagged/spring-data-jdbc[stackoverflow] by responding to questions and joining the debate.
88-
* Create https://jira.spring.io/browse/DATAJDBC[JIRA] tickets for bugs and new features and comment and vote on the ones that you are interested in.
89-
* Github is for social coding: if you want to write code, we encourage contributions through pull requests from http://help.github.com/forking/[forks of this repository]. If you want to contribute code this way, please reference a JIRA ticket as well, covering the specific issue you are addressing.
90-
* Watch for upcoming articles on Spring by http://spring.io/blog[subscribing] to spring.io.
91-
92-
Before we accept a non-trivial patch or pull request we will need you to https://cla.pivotal.io/sign/spring[sign the Contributor License Agreement]. Signing the contributor’s 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.

spring-data-jdbc/pom.xml

Lines changed: 18 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
44

55
<modelVersion>4.0.0</modelVersion>
66

77
<artifactId>spring-data-jdbc</artifactId>
8-
<version>1.1.0.BUILD-SNAPSHOT</version>
8+
<version>1.2.0.BUILD-SNAPSHOT</version>
99

1010
<name>Spring Data JDBC</name>
1111
<description>Spring Data module for JDBC repositories.</description>
12-
<url>http://projects.spring.io/spring-data-jdbc</url>
12+
<url>https://projects.spring.io/spring-data-jdbc</url>
1313

1414
<parent>
1515
<groupId>org.springframework.data</groupId>
1616
<artifactId>spring-data-relational-parent</artifactId>
17-
<version>1.1.0.BUILD-SNAPSHOT</version>
17+
<version>1.2.0.BUILD-SNAPSHOT</version>
1818
</parent>
1919

2020
<properties>
2121
<java-module-name>spring.data.jdbc</java-module-name>
22+
<project.root>${basedir}/..</project.root>
2223
</properties>
2324

2425
<inceptionYear>2017</inceptionYear>
@@ -70,6 +71,18 @@
7071
</developer>
7172
</developers>
7273

74+
<dependencyManagement>
75+
<dependencies>
76+
<dependency>
77+
<groupId>org.testcontainers</groupId>
78+
<artifactId>testcontainers-bom</artifactId>
79+
<version>${testcontainers}</version>
80+
<type>pom</type>
81+
<scope>import</scope>
82+
</dependency>
83+
</dependencies>
84+
</dependencyManagement>
85+
7386
<dependencies>
7487

7588
<dependency>
@@ -122,31 +135,14 @@
122135
<version>${mybatis.version}</version>
123136
<optional>true</optional>
124137
</dependency>
125-
<dependency>
126-
<groupId>com.h2database</groupId>
127-
<artifactId>h2</artifactId>
128-
<version>1.4.199</version>
129-
<scope>runtime</scope>
130-
</dependency>
138+
131139
<dependency>
132140
<groupId>org.hsqldb</groupId>
133141
<artifactId>hsqldb</artifactId>
134142
<version>${hsqldb.version}</version>
135143
<scope>test</scope>
136144
</dependency>
137-
<dependency>
138-
<groupId>org.hibernate</groupId>
139-
<artifactId>hibernate-core</artifactId>
140-
<version>5.2.17.Final</version>
141-
<scope>test</scope>
142-
</dependency>
143145

144-
<dependency>
145-
<groupId>org.springframework</groupId>
146-
<artifactId>spring-orm</artifactId>
147-
<version>LATEST</version>
148-
<scope>test</scope>
149-
</dependency>
150146
<dependency>
151147
<groupId>org.assertj</groupId>
152148
<artifactId>assertj-core</artifactId>
@@ -192,7 +188,6 @@
192188
<dependency>
193189
<groupId>org.testcontainers</groupId>
194190
<artifactId>mysql</artifactId>
195-
<version>${testcontainers.version}</version>
196191
<scope>test</scope>
197192
<exclusions>
198193
<exclusion>
@@ -205,21 +200,18 @@
205200
<dependency>
206201
<groupId>org.testcontainers</groupId>
207202
<artifactId>postgresql</artifactId>
208-
<version>${testcontainers.version}</version>
209203
<scope>test</scope>
210204
</dependency>
211205

212206
<dependency>
213207
<groupId>org.testcontainers</groupId>
214208
<artifactId>mariadb</artifactId>
215-
<version>${testcontainers.version}</version>
216209
<scope>test</scope>
217210
</dependency>
218211

219212
<dependency>
220213
<groupId>org.testcontainers</groupId>
221214
<artifactId>mssqlserver</artifactId>
222-
<version>${testcontainers.version}</version>
223215
<scope>test</scope>
224216
</dependency>
225217

0 commit comments

Comments
 (0)