When the project is built the following message is generated.

"The POM for com.oracle:ojdbc6:jar:11.2.0.1 is invalid, transitive
dependencies (if any) will not be available, enable debug logging for more
details"

The POM and repository look to be correct.

Any suggestions on how to resolve this issue would be appreciated.

pom.xml

    <dependency>
        <groupId>com.oracle</groupId>
        <artifactId>ojdbc6</artifactId>
        <version>11.2.0.1</version>
        <scope>provided</scope>
    </dependency>

maven command

 mvn install:install-file -Dfile=ojdbc6-11.2.0.1.jar -DgroupId=com.oracle
-DartifactId=ojdbc6 -Dversion=11.2.0.1 -Dpackaging=jar

creates the .jar and .pom files
C:\Users\me\.m2\repository\com\oracle\ojdbc6\11.2.0.1\ojdbc6-11.2.0.1.jar C:
\Users\me\.m2\repository\com\oracle\ojdbc6\11.2.0.1\ojdbc6-11.2.0.1.pom

<project>
  <groupId>com.oracle</groupId>
  <artifactId>ojdbc6</artifactId>
  <version>11.2.0.1</version>
</project>

Reply via email to