Upgrade Oracle JDBC driver to the latest working version.

Turns out the latest working version for Spring Data JDBC is ojdbc8 19.15.0.0.1. ojdbc11 or later versions of ojdbc8 contain a bug that breaks batching.

Since Spring Data R2DBC only uses the driver for testing. fFor it the latest working version is ojdbc11 21.6.0.0.1.

Closes #1270
This commit is contained in:
Jens Schauder
2022-06-22 16:13:16 +02:00
parent a263d992b7
commit 3dc3f98ec2
2 changed files with 2 additions and 2 deletions

View File

@@ -214,7 +214,7 @@
<dependency>
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ojdbc11</artifactId>
<version>21.4.0.0.1</version>
<version>21.6.0.0.1</version>
<scope>test</scope>
</dependency>