OPENJPA-2754 update to latest dbcp2 SNAPSHOT

This also requires us to update to apache commons-pool-2.6.1-SNAPSHOT
and commons-dbcp2-2.6.0-SNAPSHOT.
Both are NOT yet released, but important to solve a deadlock which kills
our unit tests and has already hit me in production as well.
This commit is contained in:
Mark Struberg 2018-10-28 13:05:08 +01:00
parent 9d4b2ece3b
commit 5c38bfaa49

View File

@ -584,6 +584,8 @@
<!-- DBCP overrides for MySQL testing -->
<dbcp.maxIdle>0</dbcp.maxIdle>
<dbcp.minIdle>0</dbcp.minIdle>
<mysql.server.version>5.7</mysql.server.version>
</properties>
<build>
@ -594,7 +596,7 @@
<configuration>
<images>
<image>
<name>mysql/mysql-server:5.7</name>
<name>mysql/mysql-server:${mysql.server.version}</name>
<run>
<env>
<MYSQL_DATABASE>${openjpa.mysql.dbname}</MYSQL_DATABASE>
@ -1340,7 +1342,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
<version>2.6.0</version>
<version>2.6.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
@ -1406,7 +1408,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-dbcp2</artifactId>
<version>2.5.0</version>
<version>2.6.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>