I have followed as mentioned in this article Find Oracle JDBC driver in Maven repository.
I have manually downloaded Oracle driver to maven\repo\com\oracle\ojdbc6\11.2.0.3
and added the following in pom.xml
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc6</artifactId>
<version>11.2.0.3</version>
</dependency>
However I am still getting the following error
Missing artifact com.oracle:ojdbc6:jar:11.2.0.3:compile
What I am doing wrong and how can I resolve this issue?
Thanks