Skip to Main Content

Java Database Connectivity (JDBC)

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Which versions of ojdbc8.jar are available in the Oracle Maven Repository?

user2766120Oct 11 2018 — edited Nov 2 2018

This post by @NirmalaSundarappa states " The following versions are available on the Oracle Maven repository:  18.30.0.0, 12.2.0.1, 12.1.0.2, 12.1.0.1, and 11.2.0.4"  but I am not able to download those besides 18.3.0.0 ( corrected from version in post 18.30.0.0 ) and 12.2.0.1. Are the other versions no longer available on the oracle maven repository?  It would be great if we could at least browse the repo contents to know if it's a connectivity issue or files are just not available. Here is a pom snippet I am using:

<properties>

<oracle.jdbc.version>12.1.0.2</oracle.jdbc.version>

</properties>

  <dependencies>

<dependency>

<groupId>com.oracle.jdbc</groupId>

<artifactId>ojdbc8</artifactId>

<version>${oracle.jdbc.version}</version>

</dependency>

<dependency>

<groupId>com.oracle.jdbc</groupId>

<artifactId>oraclepki</artifactId>

<version>${oracle.jdbc.version}</version>

</dependency>

<dependency>

<groupId>com.oracle.jdbc</groupId>

<artifactId>osdt_core</artifactId>

<version>${oracle.jdbc.version}</version>

</dependency>

<dependency>

<groupId>com.oracle.jdbc</groupId>

<artifactId>osdt_cert</artifactId>

<version>${oracle.jdbc.version}</version>

</dependency>

  </dependencies>

the error I get says:

[ERROR] Failed to execute goal on project download-test: Could not resolve depen

dencies for project com.scm:download-test:jar:1.0.3-SNAPSHOT: Could no

t find artifact com.oracle.jdbc:ojdbc8:jar:12.1.0.2 in nexus -> [Help 1]

Note the oraclepki, osdt_core, and osdt_cert were all found and downloaded.

Comments
Post Details
Added on Oct 11 2018
2 comments
10,127 views