You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2022/02/21 07:04:26 UTC

[syncope] 02/02: Updating Oracle JDBC

This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a commit to branch 2_1_X
in repository https://gitbox.apache.org/repos/asf/syncope.git

commit 75072a1fd2e6e6f8dfad037873d1b7f71af3f6c1
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Wed Feb 16 14:25:01 2022 +0100

    Updating Oracle JDBC
---
 fit/core-reference/pom.xml | 8 ++++----
 pom.xml                    | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/fit/core-reference/pom.xml b/fit/core-reference/pom.xml
index f3f2c6a..39cec47 100644
--- a/fit/core-reference/pom.xml
+++ b/fit/core-reference/pom.xml
@@ -1282,15 +1282,15 @@ under the License.
       <id>oracle-it</id>
 
       <properties>
-        <jdbcdriver.groupId>com.oracle.jdbc</jdbcdriver.groupId>
+        <jdbcdriver.groupId>com.oracle.database.jdbc</jdbcdriver.groupId>
         <jdbcdriver.artifactId>ojdbc8</jdbcdriver.artifactId>
       </properties>
 
       <dependencies>
         <dependency>
-          <groupId>com.oracle.jdbc</groupId>
-          <artifactId>ojdbc8</artifactId>
-          <version>12.2.0.1</version>
+          <groupId>com.oracle.database.jdbc</groupId>
+          <artifactId>ojdbc11</artifactId>
+          <version>${jdbc.oracle.version}</version>
           <scope>test</scope>
         </dependency>
       </dependencies>
diff --git a/pom.xml b/pom.xml
index db685c6..c3a7325 100644
--- a/pom.xml
+++ b/pom.xml
@@ -546,7 +546,7 @@ under the License.
     <!-- see https://jira.mariadb.org/browse/CONJ-921 -->
     <jdbc.mariadb.version>2.7.5</jdbc.mariadb.version>
     <jdbc.mssql.version>9.4.1.jre</jdbc.mssql.version>
-    <jdbc.oracle.version>21.4.0.0.1</jdbc.oracle.version>
+    <jdbc.oracle.version>21.5.0.0</jdbc.oracle.version>
 
     <adminUser>admin</adminUser>
     <anonymousUser>anonymous</anonymousUser>