Maven is trying to get the .pom
file of your Oracle driver because it can't find it in your local repository. A simple ojdbc14-10.2.0.pom
with the following content would suffice:
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<version>10.2.0</version>
</project>
You could create it manually or get it generated by Maven when invoking install:install-file
(to install it in your local repository) or deploy:deploy-file
(to install it in a remote repository) using the generatePom
optional parameter:
mvn install:install-file -Dfile=/path/to/ojdbc14.jar \
-DgroupId=com.oracle \
-DartifactId=ojdbc14 \
-Dversion=10.2.0 \
-Dpackaging=jar \
-DgeneratePom=true
The deploy:deploy-file
goal admits the same generatePom
optional parameter.
PS: My recommendation would be to use the Oracle Database 11g Release 2 (11.2.0.1.0) drivers.