I want to add the oracle jdbc driver to my project as dependency (runtime scope) - ojdbc14. In MVNrepository site the dependency to put in the POM is:

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

of course this does't work as it is not in the central repository used by maven. 2 questions:

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

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

link|improve this question

57% accept rate
feedback

5 Answers

up vote 71 down vote accepted

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 URL to download the file which in this case is http://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:

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.

link|improve this answer
Thanks a lot, it helped. – rperez Jul 2 '09 at 15:16
No problem. I'm glad ;) – victor hugo Jul 2 '09 at 15:19
10  
It would have been nice if oracle could host a maven repo with their jars... – AmanicA Nov 29 '10 at 13:35
1  
Those are not lines in settings.xml but a command, once you have the JAR that command will add it to your local repository – victor hugo Jul 14 '11 at 22:36
7  
@AmanicA, it's hard to use "Oracle" and "nice" in the same sentence... – Daniel Serodio Nov 9 '11 at 13:29
show 2 more comments
feedback

Up to now, its not possible to use maven repositories. I'm using ivy as dependency management tool, but also use maven2' s ibiblio repositories. And this is working for ivy:

<dependency org="oracle" name="ojdbc14" rev="10.2.0.2" conf="*->default"/>

Maven2' s dependency could be something like that:

<dependency> 
    <groupId>oracle</groupId> 
    <artifactId>ojdbc14</artifactId> 
    <version>10.2.0.2</version> 
</dependency>

Notice that i define http://download.java.net/maven/2/ and http://mirrors.ibiblio.org/pub/mirrors/maven/mule/dependencies/maven2/[organisation]/[module]/[revision]/[artifact]-[revision].[ext] as external maven2 repos on my ivy settings.

link|improve this answer
1  
This is a great answer - you can just add the repo: mirrors.ibiblio.org/pub/mirrors/maven/mule/dependencies/maven2 to your pom.xml for this to work. – Grouchal Jan 3 at 9:18
It might work, but is it legal? As explained in one of the other answers here, Oracle doesn't allow the driver to be distributed by anybody but them and they don't supply a Maven repository. If you use this solution, sometime the driver may be removed from the repository when you least expect it. – L S Apr 10 at 15:50
feedback

You can use Nexus to manage 3rd party dependencies as well as dependencies in standard maven repositories.

link|improve this answer
1  
How would nexus help in this case? Where will it download the artifact from? – ziggy Jan 12 at 16:15
The answer is incomplete, but I think @Michael Munsey is saying to create an internal/corporate repository to download from. – Randolph May 10 at 22:19
feedback

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.

link|improve this answer
feedback

This worked for me:

    <dependency> 
        <groupId>oracle</groupId> 
        <artifactId>jdbc</artifactId> 
        <version>6</version> 
    </dependency>
link|improve this answer
1  
If it worked for you, it's because you already had the driver installed in your Maven support directory. Using the "mvn" command as shown in one of the other answers here is a good way to get it installed. – L S Apr 10 at 15:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.