0

I am not getting any dependency for ORACLE JDBC driver from maven repo. Please help.

thisisdude
  • 543
  • 1
  • 7
  • 31

1 Answers1

0

Either follow the advise of SilverNak and add the Oracle repository. Or you simply download the JDBC jar manually and add it to your local Maven repository as described here:

mvn install:install-file -Dfile=<path-to-your-downloaded-jar> -DgroupId=com.oracle 
    -DartifactId=ojdbc14 -Dversion=10.2.0.2.0 -Dpackaging=jar
werner
  • 13,518
  • 6
  • 30
  • 45