Find Oracle JDBC driver in Maven repository Find Oracle JDBC driver in Maven repository java java

Find Oracle JDBC driver in Maven repository


How do I find a repository (if any) that contains this artifact?

Unfortunately due the binary license there is no public repository with the Oracle Driver JAR. This happens with many dependencies but is not Maven's fault. If you happen to find a public repository containing the JAR you can be sure that is illegal.

How do I add it so that Maven will use it?

Some JARs that can't be added due to license reasons have a pom entry in the Maven Central repo. Just check it out, it contains the vendor's preferred Maven info:

<groupId>com.oracle</groupId><artifactId>ojdbc14</artifactId><version>10.2.0.3.0</version>

...and the URL to download the file which in this case ishttp://www.oracle.com/technology/software/tech/java/sqlj_jdbc/index.html.

Once you've downloaded the JAR just add it to your computer repository with (note I pulled the groupId, artifactId and version from the POM):

mvn install:install-file -DgroupId=com.oracle -DartifactId=ojdbc14 \     -Dversion=10.2.0.3.0 -Dpackaging=jar -Dfile=ojdbc.jar -DgeneratePom=true

The last parameter for generating a POM will save you from pom.xml warnings

If your team has a local Maven repository this guide might be helpful to upload the JAR there.


For whatever reason, I could not get any of the above solutions to work. (Still can't.)

What I did instead was to include the jar in my project (blech) and then create a "system" dependency for it that indicates the path to the jar. It's probably not the RIGHT way to do it, but it does work. And it eliminates the need for the other developers on the team (or the guy setting up the build server) to put the jar in their local repositories.

UPDATE: This solution works for me when I run Hibernate Tools. It does NOT appear to work for building the WAR file, however. It doesn't include the ojdbc6.jar file in the target WAR file.

1) Create a directory called "lib" in the root of your project.

2) Copy the ojdbc6.jar file there (whatever the jar is called.)

3) Create a dependency that looks something like this:

<dependency>    <groupId>com.oracle</groupId>    <artifactId>ojdbc</artifactId>    <version>14</version>    <scope>system</scope>    <systemPath>${basedir}/lib/ojdbc6.jar</systemPath> <!-- must match file name --></dependency>

Ugly, but works for me.

To include the files in the war file add the following to your pom

<build>    <finalName>MyAppName</finalName>    <plugins>        <plugin>            <groupId>org.apache.maven.plugins</groupId>            <artifactId>maven-war-plugin</artifactId>            <configuration>                <webResources>                    <resource>                        <directory>${basedir}/src/main/java</directory>                        <targetPath>WEB-INF/classes</targetPath>                        <includes>                            <include>**/*.properties</include>                            <include>**/*.xml</include>                            <include>**/*.css</include>                            <include>**/*.html</include>                        </includes>                    </resource>                    <resource>                        <directory>${basedir}/lib</directory>                        <targetPath>WEB-INF/lib</targetPath>                        <includes>                            <include>**/*.jar</include>                        </includes>                    </resource>                </webResources>            </configuration>        </plugin>        <plugin>            <artifactId>maven-compiler-plugin</artifactId>            <configuration>                <source>1.6</source>                <target>1.6</target>            </configuration>        </plugin>    </plugins></build>


The Oracle JDBC Driver is now available in the Oracle Maven Repository (not in Central).

<dependency>    <groupId>com.oracle.jdbc</groupId>    <artifactId>ojdbc7</artifactId>    <version>12.1.0.2</version></dependency>

The Oracle Maven Repository requires a user registration. Instructions can be found in:

https://blogs.oracle.com/dev2dev/get-oracle-jdbc-drivers-and-ucp-from-oracle-maven-repository-without-ides

Update 2019-10-03

I noticed Spring Boot is now using the Oracle JDBC Driver from Maven Central.

<dependency>    <groupId>com.oracle.ojdbc</groupId>    <artifactId>ojdbc10</artifactId>    <version>19.3.0.0</version></dependency>

For Gradle users, use:

implementation 'com.oracle.ojdbc:ojdbc10:19.3.0.0'

There is no need for user registration.

Update 2020-03-02

Oracle is now publishing the drivers under the com.oracle.database group id. See Anthony Accioly answer for more information. Thanks Anthony.

Oracle JDBC Driver compatible with JDK6, JDK7, and JDK8

<dependency>  <groupId>com.oracle.database.jdbc</groupId>  <artifactId>ojdbc6</artifactId>  <version>11.2.0.4</version></dependency>

Oracle JDBC Driver compatible with JDK8, JDK9, and JDK11

<dependency>  <groupId>com.oracle.database.jdbc</groupId>  <artifactId>ojdbc8</artifactId>  <version>19.3.0.0</version></dependency>

Oracle JDBC Driver compatible with JDK10 and JDK11

<dependency>  <groupId>com.oracle.database.jdbc</groupId>  <artifactId>ojdbc10</artifactId>  <version>19.3.0.0</version></dependency>