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 2010/11/25 13:47:53 UTC

svn commit: r1039023 - in /myfaces/extensions/validator/branches/branch_for_jsf_2_0: component-support/trinidad-support/pom.xml pom.xml

Author: gpetracek
Date: Thu Nov 25 12:47:53 2010
New Revision: 1039023

URL: http://svn.apache.org/viewvc?rev=1039023&view=rev
Log:
interim change to test the hudson build

Modified:
    myfaces/extensions/validator/branches/branch_for_jsf_2_0/component-support/trinidad-support/pom.xml
    myfaces/extensions/validator/branches/branch_for_jsf_2_0/pom.xml

Modified: myfaces/extensions/validator/branches/branch_for_jsf_2_0/component-support/trinidad-support/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/validator/branches/branch_for_jsf_2_0/component-support/trinidad-support/pom.xml?rev=1039023&r1=1039022&r2=1039023&view=diff
==============================================================================
--- myfaces/extensions/validator/branches/branch_for_jsf_2_0/component-support/trinidad-support/pom.xml (original)
+++ myfaces/extensions/validator/branches/branch_for_jsf_2_0/component-support/trinidad-support/pom.xml Thu Nov 25 12:47:53 2010
@@ -75,24 +75,4 @@
         </plugins>
     </build>
 
-    <profiles>
-        <profile>
-            <id>hudson-build</id>
-            <build>
-                <plugins>
-                    <plugin>
-                        <!-- Set compile source at 1.5, since the target JSF impl is 1.2 -->
-                        <groupId>org.apache.maven.plugins</groupId>
-                        <artifactId>maven-compiler-plugin</artifactId>
-                        <configuration>
-                            <source>1.5</source>
-                            <target>1.6</target>
-                            <optimize>false</optimize>
-                        </configuration>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
-    </profiles>
-
 </project>

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=1039023&r1=1039022&r2=1039023&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 Thu Nov 25 12:47:53 2010
@@ -177,17 +177,6 @@
                 </configuration>
             </plugin>
 
-
-            <plugin>
-                <!-- Set compile source at 1.5, since the target JSF impl is 1.2 -->
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-compiler-plugin</artifactId>
-                <configuration>
-                    <source>1.5</source>
-                    <target>1.5</target>
-                    <optimize>false</optimize>
-                </configuration>
-            </plugin>
         </plugins>
     </build>
 
@@ -200,6 +189,56 @@
                 <module>assembly</module>
             </modules>
         </profile>
+
+        <profile>
+            <id>java15</id>
+            <activation>
+                <property>
+                    <name>!jdk</name>
+                </property>
+            </activation>
+
+            <build>
+                <plugins>
+                    <plugin>
+                        <!-- Set compile source at 1.5, since the target JSF impl is 1.2 -->
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-compiler-plugin</artifactId>
+                        <configuration>
+                            <source>1.5</source>
+                            <target>1.5</target>
+                            <optimize>false</optimize>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+
+        <profile>
+            <id>java16</id>
+            <activation>
+                <property>
+                    <name>jdk</name>
+                    <value>16</value>
+                </property>
+            </activation>
+
+            <build>
+                <plugins>
+                    <plugin>
+                        <!-- Set compile source at 1.6 -->
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-compiler-plugin</artifactId>
+                        <configuration>
+                            <source>1.5</source>
+                            <target>1.6</target>
+                            <optimize>false</optimize>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+
     </profiles>
 
     <reporting>