You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ga...@apache.org on 2010/09/21 06:10:39 UTC

svn commit: r999209 - /geronimo/tck/branches/3.0/validator-tck-runner/pom.xml

Author: gawor
Date: Tue Sep 21 04:10:39 2010
New Revision: 999209

URL: http://svn.apache.org/viewvc?rev=999209&view=rev
Log:
make sure we pick up the right bean validation dependencies

Modified:
    geronimo/tck/branches/3.0/validator-tck-runner/pom.xml

Modified: geronimo/tck/branches/3.0/validator-tck-runner/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/tck/branches/3.0/validator-tck-runner/pom.xml?rev=999209&r1=999208&r2=999209&view=diff
==============================================================================
--- geronimo/tck/branches/3.0/validator-tck-runner/pom.xml (original)
+++ geronimo/tck/branches/3.0/validator-tck-runner/pom.xml Tue Sep 21 04:10:39 2010
@@ -31,6 +31,18 @@
     <name>Bean Validation 1.0 (JSR-303) TCK Runner</name>
     <description>Aggregates dependencies and run's the JSR-303 TCK</description>
 
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>org.apache.geronimo.plugins</groupId>
+                <artifactId>bval</artifactId>
+                <version>${project.version}</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+
     <dependencies>
         <!-- tck -->
         <dependency>
@@ -49,8 +61,13 @@
         <dependency>
             <groupId>org.apache.bval</groupId>
             <artifactId>org.apache.bval.bundle</artifactId>
-            <version>0.1-incubating</version>
         </dependency>
+
+        <dependency>
+            <groupId>commons-beanutils</groupId>
+            <artifactId>commons-beanutils</artifactId>
+        </dependency>
+
         <dependency>
             <groupId>org.apache.geronimo.specs</groupId>
             <artifactId>geronimo-validation_1.0_spec</artifactId>