Adding Dependencies in pom.xml

2012-06-13 Thread Subhanjan
I am creating a project which will have database at its back end. For that I need ojdbc.jar. The problem is whenever I add ojdbc14.jar dependency and save in pom.xml (I use m2eclipse plugin) it gives me a weird error 'Missing artifact com.oracle:ojdbc14:jar:10.2.0.3.0:compile'. whenever I

Re: Adding Dependencies in pom.xml

2012-06-13 Thread Achim Nierbeck
well, it's not really camel related, but do you have a maven artefact for the oracle driver, cause there is no official released oracle driver available on maven repositories (AFAIK) regards, Achim 2012/6/13 Subhanjan subhanjanro...@gmail.com: I am creating a project which will have database

Re: Adding Dependencies in pom.xml

2012-06-13 Thread Christian Schneider
You have to add the ojdbc jar to your local maven repo: mvn install:install-file -Dfile=C:\oraclexe\app\oracle\product\11.2.0\server\jdbc\lib\ojdbc6.jar -DgroupId=ojdbc -DartifactId=ojdbc -Dversion=11.2.0.2.0 -Dpackaging=jar Christian Am 13.06.2012 14:27, schrieb Subhanjan: I am creating