OPENJPA-818 changing tck profile to use geronimo api

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@723873 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Dick 2008-12-05 21:23:36 +00:00
parent c15fb7dfbb
commit b45e0655df
1 changed files with 4 additions and 5 deletions

View File

@ -100,7 +100,6 @@
<!-- use official JPA API instead of GM's -->
<fileset dir="${tck.dir}/lib">
<include name="**/*.jar" />
<exclude name="**/geronimo-jpa*" />
</fileset>
<pathelement path="${java.class.path}" />
<pathelement path="${db.jar}" />
@ -278,11 +277,11 @@ databaseName=${db.name}
</repositories>
<dependencies>
<!-- use the authoritative javax.persistence API for testing -->
<!-- Use early access version of JPA spec from Geronimo -->
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>persistence-api</artifactId>
<version>1.0b</version>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jpa_2.0_spec</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.openjpa</groupId>