You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by gp...@apache.org on 2013/02/28 00:12:28 UTC

svn commit: r1451026 - in /myfaces/extensions/validator/branches/branch_for_jsf_2_0: ./ core/src/main/java/org/apache/myfaces/extensions/validator/core/initializer/component/ examples/assembly/ test-modules/ test-modules/base-test-infrastructure/ test-...

Author: gpetracek
Date: Wed Feb 27 23:12:27 2013
New Revision: 1451026

URL: http://svn.apache.org/r1451026
Log:
EXTVAL-153 updated test-modules

Modified:
    myfaces/extensions/validator/branches/branch_for_jsf_2_0/core/src/main/java/org/apache/myfaces/extensions/validator/core/initializer/component/AbstractHtmlCoreComponentsComponentInitializer.java
    myfaces/extensions/validator/branches/branch_for_jsf_2_0/examples/assembly/pom.xml
    myfaces/extensions/validator/branches/branch_for_jsf_2_0/pom.xml
    myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/base-test-infrastructure/pom.xml
    myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/bean-validation-tests/pom.xml
    myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/core-tests/pom.xml
    myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/pom.xml
    myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/property-validation-tests/pom.xml
    myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/trinidad-component-support-tests/pom.xml

Modified: myfaces/extensions/validator/branches/branch_for_jsf_2_0/core/src/main/java/org/apache/myfaces/extensions/validator/core/initializer/component/AbstractHtmlCoreComponentsComponentInitializer.java
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/branches/branch_for_jsf_2_0/core/src/main/java/org/apache/myfaces/extensions/validator/core/initializer/component/AbstractHtmlCoreComponentsComponentInitializer.java?rev=1451026&r1=1451025&r2=1451026&view=diff
==============================================================================
--- myfaces/extensions/validator/branches/branch_for_jsf_2_0/core/src/main/java/org/apache/myfaces/extensions/validator/core/initializer/component/AbstractHtmlCoreComponentsComponentInitializer.java (original)
+++ myfaces/extensions/validator/branches/branch_for_jsf_2_0/core/src/main/java/org/apache/myfaces/extensions/validator/core/initializer/component/AbstractHtmlCoreComponentsComponentInitializer.java Wed Feb 27 23:12:27 2013
@@ -18,7 +18,6 @@
  */
 package org.apache.myfaces.extensions.validator.core.initializer.component;
 
-import org.apache.myfaces.extensions.validator.core.ExtValContext;
 import org.apache.myfaces.extensions.validator.core.ExtValCoreConfiguration;
 import org.apache.myfaces.extensions.validator.internal.UsageInformation;
 import org.apache.myfaces.extensions.validator.internal.UsageCategory;
@@ -233,8 +232,7 @@ public abstract class AbstractHtmlCoreCo
     {
         if (this.forceComponentInitialization == null)
         {
-            this.forceComponentInitialization = !ExtValContext.getContext()
-                .getModuleConfiguration(ExtValCoreConfiguration.class).activateMarkupMetaData();
+            this.forceComponentInitialization = !ExtValCoreConfiguration.get().activateMarkupMetaData();
         }
     }
 }

Modified: myfaces/extensions/validator/branches/branch_for_jsf_2_0/examples/assembly/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/branches/branch_for_jsf_2_0/examples/assembly/pom.xml?rev=1451026&r1=1451025&r2=1451026&view=diff
==============================================================================
--- myfaces/extensions/validator/branches/branch_for_jsf_2_0/examples/assembly/pom.xml (original)
+++ myfaces/extensions/validator/branches/branch_for_jsf_2_0/examples/assembly/pom.xml Wed Feb 27 23:12:27 2013
@@ -29,7 +29,7 @@
     <parent>
         <groupId>org.apache.myfaces.extensions.validator.examples</groupId>
         <artifactId>examples-project</artifactId>
-        <version>2.0.6-SNAPSHOT</version>
+        <version>2.0.7-SNAPSHOT</version>
     </parent>
 
     <build>

Modified: myfaces/extensions/validator/branches/branch_for_jsf_2_0/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/branches/branch_for_jsf_2_0/pom.xml?rev=1451026&r1=1451025&r2=1451026&view=diff
==============================================================================
--- myfaces/extensions/validator/branches/branch_for_jsf_2_0/pom.xml (original)
+++ myfaces/extensions/validator/branches/branch_for_jsf_2_0/pom.xml Wed Feb 27 23:12:27 2013
@@ -66,7 +66,7 @@
         <module>validation-modules</module>
         <module>component-support</module>
 
-		<!--module>test-modules</module-->
+		<module>test-modules</module>
         <module>examples</module>
     </modules>
 

Modified: myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/base-test-infrastructure/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/base-test-infrastructure/pom.xml?rev=1451026&r1=1451025&r2=1451026&view=diff
==============================================================================
--- myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/base-test-infrastructure/pom.xml (original)
+++ myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/base-test-infrastructure/pom.xml Wed Feb 27 23:12:27 2013
@@ -27,12 +27,12 @@
     <artifactId>myfaces-extval-base-test-infrastructure</artifactId>
 
     <name>MyFaces Extensions-Validator Base-Test-Infrastructure</name>
-    <version>2.0.6-SNAPSHOT</version>
+    <version>2.0.7-SNAPSHOT</version>
 
     <parent>
         <groupId>org.apache.myfaces.extensions.validator.test-modules</groupId>
         <artifactId>test-modules-project</artifactId>
-        <version>2.0.6-SNAPSHOT</version>
+        <version>2.0.7-SNAPSHOT</version>
     </parent>
 
 </project>

Modified: myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/bean-validation-tests/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/bean-validation-tests/pom.xml?rev=1451026&r1=1451025&r2=1451026&view=diff
==============================================================================
--- myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/bean-validation-tests/pom.xml (original)
+++ myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/bean-validation-tests/pom.xml Wed Feb 27 23:12:27 2013
@@ -27,12 +27,12 @@
     <artifactId>myfaces-extval-bean-validation-tests</artifactId>
 
     <name>MyFaces Extensions-Validator Bean-Validation-Integration-Tests</name>
-    <version>2.0.6-SNAPSHOT</version>
+    <version>2.0.7-SNAPSHOT</version>
 
     <parent>
         <groupId>org.apache.myfaces.extensions.validator.test-modules</groupId>
         <artifactId>test-modules-project</artifactId>
-        <version>2.0.6-SNAPSHOT</version>
+        <version>2.0.7-SNAPSHOT</version>
     </parent>
 
     <repositories>
@@ -69,7 +69,7 @@
         <dependency>
             <groupId>org.apache.myfaces.extensions.validator.test-modules</groupId>
             <artifactId>myfaces-extval-base-test-infrastructure</artifactId>
-            <version>2.0.6-SNAPSHOT</version>
+            <version>2.0.7-SNAPSHOT</version>
             <type>test-jar</type>
             <scope>test</scope>
         </dependency>
@@ -77,7 +77,7 @@
         <dependency>
             <groupId>org.apache.myfaces.extensions.validator.test-modules</groupId>
             <artifactId>myfaces-extval-core-tests</artifactId>
-            <version>2.0.6-SNAPSHOT</version>
+            <version>2.0.7-SNAPSHOT</version>
             <type>test-jar</type>
             <scope>test</scope>
         </dependency>
@@ -85,7 +85,7 @@
         <dependency>
             <groupId>org.apache.myfaces.extensions.validator.validation-modules</groupId>
             <artifactId>myfaces-extval-bean-validation</artifactId>
-            <version>2.0.6-SNAPSHOT</version>
+            <version>2.0.7-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
 

Modified: myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/core-tests/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/core-tests/pom.xml?rev=1451026&r1=1451025&r2=1451026&view=diff
==============================================================================
--- myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/core-tests/pom.xml (original)
+++ myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/core-tests/pom.xml Wed Feb 27 23:12:27 2013
@@ -27,19 +27,19 @@
     <artifactId>myfaces-extval-core-tests</artifactId>
 
     <name>MyFaces Extensions-Validator Core-Tests</name>
-    <version>2.0.6-SNAPSHOT</version>
+    <version>2.0.7-SNAPSHOT</version>
 
     <parent>
         <groupId>org.apache.myfaces.extensions.validator.test-modules</groupId>
         <artifactId>test-modules-project</artifactId>
-        <version>2.0.6-SNAPSHOT</version>
+        <version>2.0.7-SNAPSHOT</version>
     </parent>
 
     <dependencies>
         <dependency>
             <groupId>org.apache.myfaces.extensions.validator.test-modules</groupId>
             <artifactId>myfaces-extval-base-test-infrastructure</artifactId>
-            <version>2.0.6-SNAPSHOT</version>
+            <version>2.0.7-SNAPSHOT</version>
             <type>test-jar</type>
             <scope>test</scope>
         </dependency>

Modified: myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/pom.xml?rev=1451026&r1=1451025&r2=1451026&view=diff
==============================================================================
--- myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/pom.xml (original)
+++ myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/pom.xml Wed Feb 27 23:12:27 2013
@@ -28,14 +28,18 @@
     <artifactId>test-modules-project</artifactId>
 
     <name>MyFaces Extensions-Validator Test-Modules</name>
-    <version>2.0.6-SNAPSHOT</version>
+    <version>2.0.7-SNAPSHOT</version>
 
     <parent>
         <groupId>org.apache.myfaces.extensions.validator</groupId>
         <artifactId>myfaces-extval-module</artifactId>
-        <version>2.0.6-SNAPSHOT</version>
+        <version>2.0.7-SNAPSHOT</version>
     </parent>
 
+    <properties>
+        <deploy.skip>false</deploy.skip>
+    </properties>
+
     <modules>
         <module>base-test-infrastructure</module>
         <module>core-tests</module>
@@ -48,7 +52,7 @@
         <dependency>
             <groupId>org.apache.myfaces.extensions.validator</groupId>
             <artifactId>myfaces-extval-core</artifactId>
-            <version>2.0.6-SNAPSHOT</version>
+            <version>2.0.7-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
         <dependency>
@@ -78,7 +82,7 @@
         <dependency>
             <groupId>org.apache.myfaces.test</groupId>
             <artifactId>myfaces-test20</artifactId>
-            <version>1.0.4-SNAPSHOT</version>
+            <version>1.0.4</version>
             <scope>test</scope>
         </dependency>
 		
@@ -110,6 +114,13 @@
         </resources>
         <plugins>
             <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-deploy-plugin</artifactId>
+                <configuration>
+                    <skip>${deploy.skip}</skip> <!-- we don't deploy test modules -->
+                </configuration>
+            </plugin>
+            <plugin>
                 <inherited>true</inherited>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-source-plugin</artifactId>

Modified: myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/property-validation-tests/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/property-validation-tests/pom.xml?rev=1451026&r1=1451025&r2=1451026&view=diff
==============================================================================
--- myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/property-validation-tests/pom.xml (original)
+++ myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/property-validation-tests/pom.xml Wed Feb 27 23:12:27 2013
@@ -27,19 +27,19 @@
     <artifactId>myfaces-extval-property-validation-tests</artifactId>
 
     <name>MyFaces Extensions-Validator Property-Validation-Tests</name>
-    <version>2.0.6-SNAPSHOT</version>
+    <version>2.0.7-SNAPSHOT</version>
 
     <parent>
         <groupId>org.apache.myfaces.extensions.validator.test-modules</groupId>
         <artifactId>test-modules-project</artifactId>
-        <version>2.0.6-SNAPSHOT</version>
+        <version>2.0.7-SNAPSHOT</version>
     </parent>
 
     <dependencies>
         <dependency>
             <groupId>org.apache.myfaces.extensions.validator.test-modules</groupId>
             <artifactId>myfaces-extval-base-test-infrastructure</artifactId>
-            <version>2.0.6-SNAPSHOT</version>
+            <version>2.0.7-SNAPSHOT</version>
             <type>test-jar</type>
             <scope>test</scope>
         </dependency>
@@ -47,7 +47,7 @@
         <dependency>
             <groupId>org.apache.myfaces.extensions.validator.test-modules</groupId>
             <artifactId>myfaces-extval-core-tests</artifactId>
-            <version>2.0.6-SNAPSHOT</version>
+            <version>2.0.7-SNAPSHOT</version>
             <type>test-jar</type>
             <scope>test</scope>
         </dependency>
@@ -55,7 +55,7 @@
         <dependency>
             <groupId>org.apache.myfaces.extensions.validator.validation-modules</groupId>
             <artifactId>myfaces-extval-property-validation</artifactId>
-            <version>2.0.6-SNAPSHOT</version>
+            <version>2.0.7-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
     </dependencies>

Modified: myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/trinidad-component-support-tests/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/trinidad-component-support-tests/pom.xml?rev=1451026&r1=1451025&r2=1451026&view=diff
==============================================================================
--- myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/trinidad-component-support-tests/pom.xml (original)
+++ myfaces/extensions/validator/branches/branch_for_jsf_2_0/test-modules/trinidad-component-support-tests/pom.xml Wed Feb 27 23:12:27 2013
@@ -27,12 +27,12 @@
     <artifactId>myfaces-extval-trinidad-support-tests</artifactId>
 
     <name>MyFaces Extensions-Validator Trinidad Component-Support-Tests</name>
-    <version>2.0.6-SNAPSHOT</version>
+    <version>2.0.7-SNAPSHOT</version>
 
     <parent>
         <groupId>org.apache.myfaces.extensions.validator.test-modules</groupId>
         <artifactId>test-modules-project</artifactId>
-        <version>2.0.6-SNAPSHOT</version>
+        <version>2.0.7-SNAPSHOT</version>
     </parent>
 
 	<!--  Is there a way to synchronize this value with the component support module POM -->
@@ -44,14 +44,14 @@
         <dependency>
             <groupId>org.apache.myfaces.extensions.validator.validation-modules</groupId>
             <artifactId>myfaces-extval-property-validation</artifactId>
-            <version>2.0.6-SNAPSHOT</version>
+            <version>2.0.7-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
         
         <dependency>
             <groupId>org.apache.myfaces.extensions.validator.test-modules</groupId>
             <artifactId>myfaces-extval-base-test-infrastructure</artifactId>
-            <version>2.0.6-SNAPSHOT</version>
+            <version>2.0.7-SNAPSHOT</version>
             <type>test-jar</type>
             <scope>test</scope>
         </dependency>
@@ -59,7 +59,7 @@
         <dependency>
             <groupId>org.apache.myfaces.extensions.validator.test-modules</groupId>
             <artifactId>myfaces-extval-core-tests</artifactId>
-            <version>2.0.6-SNAPSHOT</version>
+            <version>2.0.7-SNAPSHOT</version>
             <type>test-jar</type>
             <scope>test</scope>
         </dependency>
@@ -67,7 +67,7 @@
         <dependency>
             <groupId>org.apache.myfaces.extensions.validator.component-support-modules</groupId>
             <artifactId>myfaces-extval-trinidad-support</artifactId>
-            <version>2.0.6-SNAPSHOT</version>
+            <version>2.0.7-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>