You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2010/05/11 00:05:20 UTC

svn commit: r942930 - in /myfaces/core/branches/1.1.x: api/pom.xml impl/pom.xml

Author: lu4242
Date: Mon May 10 22:05:20 2010
New Revision: 942930

URL: http://svn.apache.org/viewvc?rev=942930&view=rev
Log:
MYFACES-2566 HTMLEncoder requiring StringBuilder class from JDK 5 (add animal sniffer to check JDK 1.4 compatibility)

Modified:
    myfaces/core/branches/1.1.x/api/pom.xml
    myfaces/core/branches/1.1.x/impl/pom.xml

Modified: myfaces/core/branches/1.1.x/api/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1.1.x/api/pom.xml?rev=942930&r1=942929&r2=942930&view=diff
==============================================================================
--- myfaces/core/branches/1.1.x/api/pom.xml (original)
+++ myfaces/core/branches/1.1.x/api/pom.xml Mon May 10 22:05:20 2010
@@ -137,6 +137,52 @@
         </plugins>
       </build>
     </profile>
+    <profile>
+        <id>checkJDK</id>
+        <activation>
+            <property>
+                <name>performRelease</name>
+                <value>true</value>
+            </property>
+        </activation>
+        <build>
+            <plugins>
+                <plugin>
+                  <groupId>org.jvnet</groupId>
+                  <artifactId>animal-sniffer</artifactId>
+                  <version>1.2</version>
+                  <executions>
+                    <execution>
+                      <goals>
+                        <goal>check</goal>
+                      </goals>
+                      <configuration>
+                        <signature>
+                          <groupId>org.jvnet.animal-sniffer</groupId>
+                          <artifactId>java1.4</artifactId>
+                          <version>1.0</version>
+                        </signature>
+                      </configuration>
+                    </execution>
+                  </executions>
+                </plugin>
+            </plugins>
+        </build>
+        <pluginRepositories>
+            <pluginRepository>
+                <id>java.net.repo</id>
+                <name>java.net repository</name>
+                <url>http://download.java.net/maven/2/</url>
+            </pluginRepository>
+        </pluginRepositories>
+        <repositories>
+            <repository>
+                <id>java.net.repo</id>
+                <name>java.net repository</name>
+                <url>http://download.java.net/maven/2</url>
+            </repository>
+        </repositories>
+    </profile>
   </profiles>
   <dependencies>
     <dependency>

Modified: myfaces/core/branches/1.1.x/impl/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1.1.x/impl/pom.xml?rev=942930&r1=942929&r2=942930&view=diff
==============================================================================
--- myfaces/core/branches/1.1.x/impl/pom.xml (original)
+++ myfaces/core/branches/1.1.x/impl/pom.xml Mon May 10 22:05:20 2010
@@ -424,6 +424,52 @@
         </plugins>
       </build>
     </profile>
+    <profile>
+        <id>checkJDK</id>
+        <activation>
+            <property>
+                <name>performRelease</name>
+                <value>true</value>
+            </property>
+        </activation>
+        <build>
+            <plugins>
+                <plugin>
+                  <groupId>org.jvnet</groupId>
+                  <artifactId>animal-sniffer</artifactId>
+                  <version>1.2</version>
+                  <executions>
+                    <execution>
+                      <goals>
+                        <goal>check</goal>
+                      </goals>
+                      <configuration>
+                        <signature>
+                          <groupId>org.jvnet.animal-sniffer</groupId>
+                          <artifactId>java1.4</artifactId>
+                          <version>1.0</version>
+                        </signature>
+                      </configuration>
+                    </execution>
+                  </executions>
+                </plugin>
+            </plugins>
+        </build>
+        <pluginRepositories>
+            <pluginRepository>
+                <id>java.net.repo</id>
+                <name>java.net repository</name>
+                <url>http://download.java.net/maven/2</url>
+            </pluginRepository>
+        </pluginRepositories>
+        <repositories>
+            <repository>
+                <id>java.net.repo</id>
+                <name>java.net repository</name>
+                <url>http://download.java.net/maven/2</url>
+            </repository>
+        </repositories>
+    </profile>
   </profiles>
   <dependencies>
     <dependency>