Skip to content

Commit

Permalink
Changes dependencies on various Oracle JDBC artifacts from their comp…
Browse files Browse the repository at this point in the history
…iled-with-Java-11 variants to their compiled-with-Java-17 variants

Signed-off-by: Laird Nelson <laird.nelson@oracle.com>
  • Loading branch information
ljnelson committed Nov 21, 2024
1 parent 3af58fe commit db35aca
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ For details on an Oracle Docker image, see https://github.com/oracle/docker-imag
</map>
<map>
<value key="groupId">com.oracle.database.jdbc</value>
<value key="artifactId">ucp11</value>
<value key="artifactId">ucp17</value>
<value key="scope">runtime</value>
</map>
</list>
Expand Down
7 changes: 7 additions & 0 deletions dependencies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1410,6 +1410,13 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- The ojdbc-bom as of this writing does not "cover" ojdbc17-production:pom. Add that here temporarily. -->
<dependency>
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ojdbc17-production</artifactId>
<version>${version.lib.ojdbc}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.glassfish.jersey</groupId>
<artifactId>jersey-bom</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion integrations/cdi/datasource-ucp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
</dependency>
<dependency>
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ucp11</artifactId>
<artifactId>ucp17</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions integrations/db/ojdbc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@
</dependency>
<dependency>
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ojdbc11-production</artifactId>
<artifactId>ojdbc17-production</artifactId>
<type>pom</type>
<exclusions>
<exclusion>
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ucp11</artifactId>
<artifactId>ucp17</artifactId>
</exclusion>
<exclusion>
<!-- Contains JAXP impl, so we exclude it to not interfere -->
Expand Down

0 comments on commit db35aca

Please # to comment.