I am not getting any dependency for ORACLE JDBC driver from maven repo. Please help.
Asked
Active
Viewed 222 times
0
-
1Simple answer: You will never get it cause you have to download it manually from Oracle... – khmarbaise Mar 26 '18 at 09:34
-
Then how can I set it on my maven pom while running CI? I am not going to place this everywhere I run my suite. – thisisdude Mar 26 '18 at 12:37
-
You should start using a repository or hopefully you already using one... – khmarbaise Mar 26 '18 at 12:43
-
1You have to add the repository, see [this answer](https://stackoverflow.com/a/35598253/7677308) – SilverNak Mar 26 '18 at 12:49
1 Answers
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