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:24 UTC

[syncope] branch 2_1_X updated (0107a1c -> 75072a1)

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

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


    from 0107a1c  [SYNCOPE-1658] Tabular Topology (#312)
     new 0dc1eae  Upgrading maven-compiler-plugin
     new 75072a1  Updating Oracle JDBC

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 fit/core-reference/pom.xml | 8 ++++----
 pom.xml                    | 4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

[syncope] 01/02: Upgrading maven-compiler-plugin

Posted by il...@apache.org.
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 0dc1eae0aae17624fd748efcfa89eef0e027521e
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Mon Feb 14 17:03:34 2022 +0100

    Upgrading maven-compiler-plugin
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 3ecccd0..db685c6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1888,7 +1888,7 @@ under the License.
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-compiler-plugin</artifactId>
-          <version>3.9.0</version>
+          <version>3.10.0</version>
           <configuration>
             <source>${targetJdk}</source>
             <target>${targetJdk}</target>

[syncope] 02/02: Updating Oracle JDBC

Posted by il...@apache.org.
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>