This is an automated email from the ASF dual-hosted git repository. struberg pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/openjpa.git
commit 477d73a99682f4b029e1f52767e70a6061a04ad3 Author: Mark Struberg <strub...@apache.org> AuthorDate: Wed May 5 07:33:50 2021 +0200 OPENJPA-2816 fix herddb jdbc driver class name --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 6697705..4914a3c 100644 --- a/pom.xml +++ b/pom.xml @@ -1119,7 +1119,7 @@ </dependency> </dependencies> <properties> - <connection.driver.name>org.herddb.jdbc.Driver</connection.driver.name> + <connection.driver.name>herddb.jdbc.Driver</connection.driver.name> <connection.url>jdbc:herddb://localhost</connection.url> <connection.username>sa</connection.username> @@ -1128,7 +1128,7 @@ <!-- DBCP overrides for testing --> <dbcp.maxIdle>5</dbcp.maxIdle> - <dbcp.minIdle>0</dbcp.minIdle> + <dbcp.minIdle>1</dbcp.minIdle> </properties>