How can I solve the Maven error ?
Missing artifact com.oracle:ojdbc14:jar:10.2.0.1.0
I tried to add another dependency hibernate-entitymanager
but it does not work.
How can I solve the Maven error ?
Missing artifact com.oracle:ojdbc14:jar:10.2.0.1.0
I tried to add another dependency hibernate-entitymanager
but it does not work.
<!-- https://mvnrepository.com/artifact/oracle/ojdbc14 -->
<dependency>
<groupId>oracle</groupId>
<artifactId>ojdbc14</artifactId>
<version>10.2.0.1.0</version>
</dependency>
You cannot use oracle dependency in your Pom file if you are running your application on server , You need to add jdbc jar file to any folder in your project , And define in your pom.xml
<dependency>
<groupId>oracle</groupId>
<artifactId>ojdbc6</artifactId>
<version>11.2.0.3</version>
<scope>system</scope>
<systemPath>${basedir}/lib/ojdbc6-11.2.0.3.jar</systemPath>
</dependency>