Skip to main content

Posts

Showing posts with the label maven-2

Find Oracle JDBC driver in Maven repository

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: How do I find a repository (if any) that contains this artifact? How do I add it so that Maven will use it?