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/05/15 17:15:55 UTC

svn commit: r775185 - /openjpa/trunk/openjpa-examples/pom.xml

Author: dwoods
Date: Fri May 15 15:15:53 2009
New Revision: 775185

URL: http://svn.apache.org/viewvc?rev=775185&view=rev
Log:
OPENJPA-1088 fix openjpa-examples build failure when built from the root pom instead of openjkpa-examples/pom.xml

Modified:
    openjpa/trunk/openjpa-examples/pom.xml

Modified: openjpa/trunk/openjpa-examples/pom.xml
URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-examples/pom.xml?rev=775185&r1=775184&r2=775185&view=diff
==============================================================================
--- openjpa/trunk/openjpa-examples/pom.xml (original)
+++ openjpa/trunk/openjpa-examples/pom.xml Fri May 15 15:15:53 2009
@@ -37,7 +37,7 @@
     <dependencies>
         <dependency>
             <groupId>org.apache.openjpa</groupId>
-            <artifactId>openjpa-all</artifactId>
+            <artifactId>openjpa-persistence-jdbc</artifactId>
             <version>${pom.version}</version>
         </dependency>
         <dependency>
@@ -50,6 +50,11 @@
             <artifactId>commons-dbcp</artifactId>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>commons-collections</groupId>
+            <artifactId>commons-collections</artifactId>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
     <build>
         <plugins>