Am trying to use jdbc connection in my Java EE6 application(class name VisualizerRepository.java), i have the jdbc driver in nexus repository
The c
The ojdbc jar is not in public maven repositories. You can add the jar to local repository manually.
Download the jar from:
Install in your repository
mvn install:install-file -Dfile={Path/to/your/ojdbc.jar} -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0 -Dpackaging=jar
Use in your pom
com.oracle ojdbc6 11.2.0