Tag Archives: OJDBC

Installing OJDBC jar to local maven repository

1. Command to install ojdbc jar to local maven repository

mvn install:install-file -Dfile={path/to/your/ojdbc.jar} -DgroupId=com.oracle -DartifactId=ojdbc14 -Dversion=10.2.0.3.0 -Dpackaging=jar

2. Maven dependency to be added to the pom.xml

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