Skip to content

Commit eb58fbe

Browse files
committed
updates
1 parent 0258167 commit eb58fbe

File tree

5 files changed

+28
-18
lines changed

5 files changed

+28
-18
lines changed

pom.xml

Lines changed: 24 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,17 @@
3737
<url>${project.url}</url>
3838
<tag>HEAD</tag>
3939
</scm>
40-
40+
41+
<repositories>
42+
<repository>
43+
<id>spring-milestone</id>
44+
<url>https://repo.spring.io/milestone</url>
45+
<releases>
46+
<enabled>true</enabled>
47+
</releases>
48+
</repository>
49+
</repositories>
50+
4151
<issueManagement>
4252
<system>GitHub Issues</system>
4353
<url>https://github.com/marschall/hibernate-batch-sequence-generator/issues</url>
@@ -94,7 +104,7 @@
94104
<configuration>
95105
<links>
96106
<link>https://docs.oracle.com/javase/11/docs/api/</link>
97-
<link>https://docs.jboss.org/hibernate/orm/6.0/javadocs/</link>
107+
<link>https://docs.jboss.org/hibernate/orm/6.1/javadocs/</link>
98108
</links>
99109
</configuration>
100110
</plugin>
@@ -202,28 +212,28 @@
202212
<dependency>
203213
<groupId>org.junit</groupId>
204214
<artifactId>junit-bom</artifactId>
205-
<version>5.8.2</version>
215+
<version>5.9.1</version>
206216
<type>pom</type>
207217
<scope>import</scope>
208218
</dependency>
209219
<dependency>
210220
<groupId>org.springframework</groupId>
211221
<artifactId>spring-framework-bom</artifactId>
212-
<version>5.3.19</version>
222+
<version>6.0.0-M6</version>
213223
<type>pom</type>
214224
<scope>import</scope>
215225
</dependency>
216226
<dependency>
217227
<groupId>com.oracle.database.jdbc</groupId>
218228
<artifactId>ojdbc-bom</artifactId>
219-
<version>21.5.0.0</version>
229+
<version>21.7.0.0</version>
220230
<type>pom</type>
221231
<scope>import</scope>
222232
</dependency>
223233
<dependency>
224234
<groupId>org.apache.logging.log4j</groupId>
225235
<artifactId>log4j-bom</artifactId>
226-
<version>2.17.2</version>
236+
<version>2.19.0</version>
227237
<type>pom</type>
228238
<scope>import</scope>
229239
</dependency>
@@ -262,44 +272,44 @@
262272
<dependency>
263273
<groupId>net.ttddyy</groupId>
264274
<artifactId>datasource-proxy</artifactId>
265-
<version>1.7</version>
275+
<version>1.8</version>
266276
<scope>test</scope>
267277
</dependency>
268278
<!-- database drivers -->
269279
<dependency>
270280
<groupId>org.hsqldb</groupId>
271281
<artifactId>hsqldb</artifactId>
272-
<version>2.6.1</version>
282+
<version>2.7.0</version>
273283
<scope>test</scope>
274284
</dependency>
275285
<dependency>
276286
<groupId>org.postgresql</groupId>
277287
<artifactId>postgresql</artifactId>
278-
<version>42.3.3</version>
288+
<version>42.5.0</version>
279289
<scope>test</scope>
280290
</dependency>
281291
<dependency>
282292
<groupId>com.h2database</groupId>
283293
<artifactId>h2</artifactId>
284-
<version>2.1.212</version>
294+
<version>2.1.214</version>
285295
<scope>test</scope>
286296
</dependency>
287297
<dependency>
288298
<groupId>com.microsoft.sqlserver</groupId>
289299
<artifactId>mssql-jdbc</artifactId>
290-
<version>10.2.0.jre11</version>
300+
<version>11.2.1.jre11</version>
291301
<scope>test</scope>
292302
</dependency>
293303
<dependency>
294304
<groupId>org.firebirdsql.jdbc</groupId>
295305
<artifactId>jaybird</artifactId>
296-
<version>4.0.5.java11</version>
306+
<version>4.0.6.java11</version>
297307
<scope>test</scope>
298308
</dependency>
299309
<dependency>
300310
<groupId>org.mariadb.jdbc</groupId>
301311
<artifactId>mariadb-java-client</artifactId>
302-
<version>3.0.4</version>
312+
<version>3.0.8</version>
303313
<scope>test</scope>
304314
</dependency>
305315
<dependency>
@@ -394,7 +404,7 @@
394404
<properties>
395405
<project.reporting.outputEncoding>utf-8</project.reporting.outputEncoding>
396406
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
397-
<hibernate.version>6.0.0.Final</hibernate.version>
407+
<hibernate.version>6.1.4.Final</hibernate.version>
398408
</properties>
399409

400410
</project>

src/test/resources/run_firebird.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ docker run --name jdbc-firebird \
99
-e 'FIREBIRD_PASSWORD=Cent-Quick-Space-Bath-8' \
1010
-p 3050:3050 \
1111
--mount type=tmpfs,destination=/firebird/data \
12-
-d jacobalberty/firebird:v4.0.0
12+
-d jacobalberty/firebird:v4.0.1

src/test/resources/run_mariadb.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ docker run --name jdbc-mariadb \
1010
-p 3307:3306 \
1111
--mount type=tmpfs,destination=/var/lib/mysql \
1212
-v ${DIRECTORY}/mariadb:/docker-entrypoint-initdb.d \
13-
-d mariadb:10.6.5
13+
-d mariadb:10.6.10

src/test/resources/run_postgres.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ docker run --name jdbc-postgres \
55
-e POSTGRES_USER=$USER \
66
-p 5432:5432 \
77
--mount type=tmpfs,destination=/var/lib/postgresql/data \
8-
-d postgres:14.1-alpine
8+
-d postgres:14.5-alpine

src/test/resources/run_sql_server.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ docker run --name jdbc-sqlserver \
66
-e 'ACCEPT_EULA=Y' \
77
-e 'SA_PASSWORD=Cent-Quick-Space-Bath-8' \
88
-p 1433:1433 \
9-
-d mcr.microsoft.com/mssql/server:2019-latest
9+
-d mcr.microsoft.com/mssql/server:2022-latest

0 commit comments

Comments
 (0)