In the log, there is a reference to 'no dependency information available', but the POM for com.oracle:ojdbc6:jar:11.2.0.1 exists. Any help/suggestions on how to resolve this issue would be appreciated.
Verifying availability of C:\Users\david.kennedy\.m2\repository\com\oracle\ojdbc6\11.2.0.1\ojdbc6-11.2.0.1.pom from [eclipselink (http://download.eclipse.org/rt/eclipselink/maven.repo/, releases+snapshots), central (http://repo.maven.apache.org/maven2, releases)] The POM for com.oracle:ojdbc6:jar:11.2.0.1 is missing, no dependency information available C:\Users\david.kennedy\.m2\repository\com\oracle\ojdbc6\11.2.0.1\ojdbc6-11.2.0.1.pom <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.oracle</groupId> <artifactId>ojdbc6</artifactId> <version>11.2.0.1</version> <name>Oracle JDBC Driver</name> <description>Oracle JDBC driver classes for use with JDK1.7</description> <url> http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/index.html </url> <licenses> <license> <name>Oracle Technology Network Development and Distribution License Terms</name> <url> http://www.oracle.com/technology/software/htdocs/distlic.html</url> </license> </licenses> <organization> <name>Oracle Corporation</name> <url>http://www.oracle.com</url> </organization> </project> On Sat, Mar 8, 2014 at 12:13 PM, Dave Kennedy <davek1...@gmail.com> wrote: > I'm not sure where I need to add a dependency declaration for the ojdbc > driver > These are the references to oracle > pom.xml > <dependency> > > <groupId>com.oracle</groupId> > <artifactId>ojdbc6</artifactId> > <version>11.2.0.1</version> > <scope>provided</scope> > </dependency> > > src/test/resources/jdbcproperties > jdbc.driverClassName=oracle.jdbc.OracleDriver > jdbc.url=oracle:thin:@database.com:1521:dbname > jdbc.username=name > jdbc.password=pass > > src/test/resources/testingContext.xml > <bean id="jpaVendorAdapter" > > class="org.springframework.orm.jpa.vendor.EclipseLinkJpaVendorAdapter" > p:showSql="true" > > p:databasePlatform="org.eclipse.persistence.platform.database.OraclePlatform" > /> > > > On Sat, Mar 8, 2014 at 11:55 AM, Wayne Fay <wayne...@gmail.com> wrote: > >> > I updated the ojdbc6-11.2.0.1.pom file (see below) and the 'invalid' >> > message did not appear. >> >> Good. >> >> > Now there is an error running JUnit tests: No suitable driver found for >> > oracle:thin:@dataserver.com:1521:dbname >> >> Most likely you are missing a dependency declaration for the ojdbc >> driver in the module that threw this error during the JUnit execution. >> >> > I can PING the database in GlassFish Domain Admin Console and view the >> > Tables and data in Netbeans | Services | Databases >> >> What makes you think this has ANYTHING to do Netbeans or Glassfish...? >> >> Wayne >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org >> For additional commands, e-mail: users-h...@maven.apache.org >> >> >