You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openjpa.apache.org by dw...@apache.org on 2009/11/04 21:00:05 UTC

svn commit: r832866 - /openjpa/branches/1.3.x/openjpa-persistence-jdbc/pom.xml

Author: dwoods
Date: Wed Nov  4 20:00:04 2009
New Revision: 832866

URL: http://svn.apache.org/viewvc?rev=832866&view=rev
Log:
OPENJPA-839 o-p-j needs an explicit depends on jaxb for scope=test

Modified:
    openjpa/branches/1.3.x/openjpa-persistence-jdbc/pom.xml

Modified: openjpa/branches/1.3.x/openjpa-persistence-jdbc/pom.xml
URL: http://svn.apache.org/viewvc/openjpa/branches/1.3.x/openjpa-persistence-jdbc/pom.xml?rev=832866&r1=832865&r2=832866&view=diff
==============================================================================
--- openjpa/branches/1.3.x/openjpa-persistence-jdbc/pom.xml (original)
+++ openjpa/branches/1.3.x/openjpa-persistence-jdbc/pom.xml Wed Nov  4 20:00:04 2009
@@ -688,6 +688,17 @@
             <artifactId>jakarta-regexp</artifactId>
             <scope>test</scope>
         </dependency>
+        <!-- Required for org.apache.openjpa.persistence.xmlmapping tests -->
+        <dependency>
+            <groupId>javax.xml.bind</groupId>
+            <artifactId>jaxb-api</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>com.sun.xml.bind</groupId>
+            <artifactId>jaxb-impl</artifactId>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
     <build>
         <plugins>