You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bval.apache.org by st...@apache.org on 2015/05/04 17:41:32 UTC

svn commit: r1677618 - in /bval/trunk: bval-tck/pom.xml bval-tck11/pom.xml pom.xml

Author: struberg
Date: Mon May  4 15:41:32 2015
New Revision: 1677618

URL: http://svn.apache.org/r1677618
Log:
add beanvalidation-1.0 TCK by default and fix TCK setup

Modified:
    bval/trunk/bval-tck/pom.xml
    bval/trunk/bval-tck11/pom.xml
    bval/trunk/pom.xml

Modified: bval/trunk/bval-tck/pom.xml
URL: http://svn.apache.org/viewvc/bval/trunk/bval-tck/pom.xml?rev=1677618&r1=1677617&r2=1677618&view=diff
==============================================================================
--- bval/trunk/bval-tck/pom.xml (original)
+++ bval/trunk/bval-tck/pom.xml Mon May  4 15:41:32 2015
@@ -27,10 +27,33 @@
         <version>1.1.0-SNAPSHOT</version>
     </parent>
 
-    <artifactId>bval-tck-runner</artifactId>
+    <artifactId>bval-tck10-runner</artifactId>
     <name>Apache BVal :: bval-tck-runner (TCK Runner)</name>
     <description>Aggregates dependencies and runs the JSR-349 TCK</description>
 
+    <repositories>
+        <!--
+         TODO remove: this only exists because currently there are no org.jboss.test-audit on maven.central _yet_.
+        -->
+        <repository>
+            <id>jboss</id>
+            <name>JBoss Public Maven Repository Group (again)</name>
+            <url>https://repository.jboss.org/nexus/content/groups/public/</url>
+            <layout>default</layout>
+            <releases>
+                <enabled>true</enabled>
+                <updatePolicy>never</updatePolicy>
+                <checksumPolicy>fail</checksumPolicy>
+            </releases>
+            <snapshots>
+                <enabled>false</enabled>
+                <updatePolicy>never</updatePolicy>
+                <checksumPolicy>warn</checksumPolicy>
+            </snapshots>
+        </repository>
+    </repositories>
+
+
     <dependencies>
         <dependency>
             <groupId>org.apache.bval</groupId>
@@ -70,11 +93,6 @@
             <groupId>org.apache.tomcat</groupId>
             <artifactId>tomcat-el-api</artifactId>
         </dependency>
-        <dependency>
-            <groupId>org.apache.bval</groupId>
-            <artifactId>bundle</artifactId>
-            <version>${project.version}</version>
-        </dependency>
     </dependencies>
 
     <properties>
@@ -205,7 +223,14 @@
                                         </artifactItem>
                                         <artifactItem>
                                             <groupId>org.apache.bval</groupId>
-                                            <artifactId>org.apache.bval.bundle</artifactId>
+                                            <artifactId>bval-core</artifactId>
+                                            <version>${project.version}</version>
+                                            <overWrite>true</overWrite>
+                                            <outputDirectory>${project.build.directory}/dependency/lib</outputDirectory>
+                                        </artifactItem>
+                                        <artifactItem>
+                                            <groupId>org.apache.bval</groupId>
+                                            <artifactId>bval-jsr</artifactId>
                                             <version>${project.version}</version>
                                             <overWrite>true</overWrite>
                                             <outputDirectory>${project.build.directory}/dependency/lib</outputDirectory>

Modified: bval/trunk/bval-tck11/pom.xml
URL: http://svn.apache.org/viewvc/bval/trunk/bval-tck11/pom.xml?rev=1677618&r1=1677617&r2=1677618&view=diff
==============================================================================
--- bval/trunk/bval-tck11/pom.xml (original)
+++ bval/trunk/bval-tck11/pom.xml Mon May  4 15:41:32 2015
@@ -28,7 +28,7 @@ under the License.
         <version>1.1.0-SNAPSHOT</version>
     </parent>
 
-    <artifactId>bval-tck11</artifactId>
+    <artifactId>bval-tck11-runner</artifactId>
     <name>Apache BVal :: bval-tck11 (TCK Runner)</name>
     <description>Aggregates dependencies and runs the JSR-349 TCK</description>
 

Modified: bval/trunk/pom.xml
URL: http://svn.apache.org/viewvc/bval/trunk/pom.xml?rev=1677618&r1=1677617&r2=1677618&view=diff
==============================================================================
--- bval/trunk/pom.xml (original)
+++ bval/trunk/pom.xml Mon May  4 15:41:32 2015
@@ -671,6 +671,7 @@
         <module>bval-jsr</module>
         <module>bval-json</module>
         <module>bval-extras</module>
+        <module>bval-tck</module>
         <module>bval-tck11</module>
         <module>bundle</module>
     </modules>