You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by lu...@apache.org on 2013/10/23 12:56:54 UTC

svn commit: r1534982 - in /struts/struts2/trunk: ./ apps/ apps/blank/ apps/jboss-blank/ apps/mailreader/ apps/portlet/ apps/rest-showcase/ apps/showcase/ archetypes/ archetypes/struts2-archetype-angularjs/ archetypes/struts2-archetype-angularjs/src/mai...

Author: lukaszlenart
Date: Wed Oct 23 10:56:53 2013
New Revision: 1534982

URL: http://svn.apache.org/r1534982
Log:
WW-4233 Adds UTF-8 encoding property to all poms

Modified:
    struts/struts2/trunk/apps/blank/pom.xml
    struts/struts2/trunk/apps/jboss-blank/pom.xml
    struts/struts2/trunk/apps/mailreader/pom.xml
    struts/struts2/trunk/apps/pom.xml
    struts/struts2/trunk/apps/portlet/pom.xml
    struts/struts2/trunk/apps/rest-showcase/pom.xml
    struts/struts2/trunk/apps/showcase/pom.xml
    struts/struts2/trunk/archetypes/pom.xml
    struts/struts2/trunk/archetypes/struts2-archetype-angularjs/pom.xml
    struts/struts2/trunk/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/pom.xml
    struts/struts2/trunk/archetypes/struts2-archetype-blank/pom.xml
    struts/struts2/trunk/archetypes/struts2-archetype-blank/src/main/resources/archetype-resources/pom.xml
    struts/struts2/trunk/archetypes/struts2-archetype-convention/pom.xml
    struts/struts2/trunk/archetypes/struts2-archetype-convention/src/main/resources/archetype-resources/pom.xml
    struts/struts2/trunk/archetypes/struts2-archetype-dbportlet/pom.xml
    struts/struts2/trunk/archetypes/struts2-archetype-dbportlet/src/main/resources/archetype-resources/pom.xml
    struts/struts2/trunk/archetypes/struts2-archetype-plugin/pom.xml
    struts/struts2/trunk/archetypes/struts2-archetype-plugin/src/main/resources/archetype-resources/pom.xml
    struts/struts2/trunk/archetypes/struts2-archetype-portlet/pom.xml
    struts/struts2/trunk/archetypes/struts2-archetype-starter/pom.xml
    struts/struts2/trunk/archetypes/struts2-archetype-starter/src/main/resources/archetype-resources/pom.xml
    struts/struts2/trunk/assembly/pom.xml
    struts/struts2/trunk/bundles/admin/pom.xml
    struts/struts2/trunk/bundles/demo/pom.xml
    struts/struts2/trunk/bundles/pom.xml
    struts/struts2/trunk/core/pom.xml
    struts/struts2/trunk/plugins/cdi/pom.xml
    struts/struts2/trunk/plugins/codebehind/pom.xml
    struts/struts2/trunk/plugins/config-browser/pom.xml
    struts/struts2/trunk/plugins/convention/pom.xml
    struts/struts2/trunk/plugins/dojo/pom.xml
    struts/struts2/trunk/plugins/dwr/pom.xml
    struts/struts2/trunk/plugins/embeddedjsp/pom.xml
    struts/struts2/trunk/plugins/gxp/pom.xml
    struts/struts2/trunk/plugins/jasperreports/pom.xml
    struts/struts2/trunk/plugins/javatemplates/pom.xml
    struts/struts2/trunk/plugins/jfreechart/pom.xml
    struts/struts2/trunk/plugins/jsf/pom.xml
    struts/struts2/trunk/plugins/json/pom.xml
    struts/struts2/trunk/plugins/junit/pom.xml
    struts/struts2/trunk/plugins/osgi/pom.xml
    struts/struts2/trunk/plugins/oval/pom.xml
    struts/struts2/trunk/plugins/pell-multipart/pom.xml
    struts/struts2/trunk/plugins/plexus/pom.xml
    struts/struts2/trunk/plugins/pom.xml
    struts/struts2/trunk/plugins/portlet-tiles/pom.xml
    struts/struts2/trunk/plugins/portlet/pom.xml
    struts/struts2/trunk/plugins/rest/pom.xml
    struts/struts2/trunk/plugins/sitegraph/pom.xml
    struts/struts2/trunk/plugins/sitemesh/pom.xml
    struts/struts2/trunk/plugins/spring/pom.xml
    struts/struts2/trunk/plugins/struts1/pom.xml
    struts/struts2/trunk/plugins/testng/pom.xml
    struts/struts2/trunk/plugins/tiles/pom.xml
    struts/struts2/trunk/plugins/tiles3/pom.xml
    struts/struts2/trunk/pom.xml
    struts/struts2/trunk/xwork-core/pom.xml

Modified: struts/struts2/trunk/apps/blank/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/apps/blank/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/apps/blank/pom.xml (original)
+++ struts/struts2/trunk/apps/blank/pom.xml Wed Oct 23 10:56:53 2013
@@ -88,4 +88,7 @@
         </plugins>
     </build>
 
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/apps/jboss-blank/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/apps/jboss-blank/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/apps/jboss-blank/pom.xml (original)
+++ struts/struts2/trunk/apps/jboss-blank/pom.xml Wed Oct 23 10:56:53 2013
@@ -61,4 +61,7 @@
         </dependency>
     </dependencies>
 
-</project>
\ No newline at end of file
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
+</project>

Modified: struts/struts2/trunk/apps/mailreader/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/apps/mailreader/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/apps/mailreader/pom.xml (original)
+++ struts/struts2/trunk/apps/mailreader/pom.xml Wed Oct 23 10:56:53 2013
@@ -100,4 +100,7 @@
             </plugin>
         </plugins>
     </build>
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/apps/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/apps/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/apps/pom.xml (original)
+++ struts/struts2/trunk/apps/pom.xml Wed Oct 23 10:56:53 2013
@@ -225,4 +225,7 @@
         </dependency>
     </dependencies>
 
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/apps/portlet/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/apps/portlet/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/apps/portlet/pom.xml (original)
+++ struts/struts2/trunk/apps/portlet/pom.xml Wed Oct 23 10:56:53 2013
@@ -213,4 +213,7 @@
             </plugin>
         </plugins>
     </reporting>
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/apps/rest-showcase/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/apps/rest-showcase/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/apps/rest-showcase/pom.xml (original)
+++ struts/struts2/trunk/apps/rest-showcase/pom.xml Wed Oct 23 10:56:53 2013
@@ -138,4 +138,7 @@
             </plugin>
         </plugins>
     </build>
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/apps/showcase/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/apps/showcase/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/apps/showcase/pom.xml (original)
+++ struts/struts2/trunk/apps/showcase/pom.xml Wed Oct 23 10:56:53 2013
@@ -245,4 +245,7 @@
         </resources>
 
     </build>
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/archetypes/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/archetypes/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/archetypes/pom.xml (original)
+++ struts/struts2/trunk/archetypes/pom.xml Wed Oct 23 10:56:53 2013
@@ -49,4 +49,7 @@
         <module>struts2-archetype-starter</module>
     </modules>
 
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/archetypes/struts2-archetype-angularjs/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/archetypes/struts2-archetype-angularjs/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/archetypes/struts2-archetype-angularjs/pom.xml (original)
+++ struts/struts2/trunk/archetypes/struts2-archetype-angularjs/pom.xml Wed Oct 23 10:56:53 2013
@@ -19,6 +19,7 @@
 
     <properties>
         <maven.test.skip>true</maven.test.skip>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     </properties>
 
     <build>
@@ -89,4 +90,4 @@
         </profile>
     </profiles>
 
-</project>
\ No newline at end of file
+</project>

Modified: struts/struts2/trunk/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/pom.xml (original)
+++ struts/struts2/trunk/archetypes/struts2-archetype-angularjs/src/main/resources/archetype-resources/pom.xml Wed Oct 23 10:56:53 2013
@@ -10,6 +10,7 @@
 
     <properties>
         <struts2.version>${project.version}</struts2.version>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     </properties>
 
     <dependencies>

Modified: struts/struts2/trunk/archetypes/struts2-archetype-blank/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/archetypes/struts2-archetype-blank/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/archetypes/struts2-archetype-blank/pom.xml (original)
+++ struts/struts2/trunk/archetypes/struts2-archetype-blank/pom.xml Wed Oct 23 10:56:53 2013
@@ -20,6 +20,7 @@
     
     <properties>
         <maven.test.skip>true</maven.test.skip>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     </properties>
 
     <build>

Modified: struts/struts2/trunk/archetypes/struts2-archetype-blank/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/archetypes/struts2-archetype-blank/src/main/resources/archetype-resources/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/archetypes/struts2-archetype-blank/src/main/resources/archetype-resources/pom.xml (original)
+++ struts/struts2/trunk/archetypes/struts2-archetype-blank/src/main/resources/archetype-resources/pom.xml Wed Oct 23 10:56:53 2013
@@ -10,6 +10,7 @@
 
     <properties>
         <struts2.version>${project.version}</struts2.version>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     </properties>
 
     <dependencies>

Modified: struts/struts2/trunk/archetypes/struts2-archetype-convention/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/archetypes/struts2-archetype-convention/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/archetypes/struts2-archetype-convention/pom.xml (original)
+++ struts/struts2/trunk/archetypes/struts2-archetype-convention/pom.xml Wed Oct 23 10:56:53 2013
@@ -19,6 +19,7 @@
 
     <properties>
         <maven.test.skip>true</maven.test.skip>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     </properties>
 
     <build>
@@ -89,4 +90,4 @@
         </profile>
     </profiles>
 
-</project>
\ No newline at end of file
+</project>

Modified: struts/struts2/trunk/archetypes/struts2-archetype-convention/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/archetypes/struts2-archetype-convention/src/main/resources/archetype-resources/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/archetypes/struts2-archetype-convention/src/main/resources/archetype-resources/pom.xml (original)
+++ struts/struts2/trunk/archetypes/struts2-archetype-convention/src/main/resources/archetype-resources/pom.xml Wed Oct 23 10:56:53 2013
@@ -10,6 +10,7 @@
 
     <properties>
         <struts2.version>${project.version}</struts2.version>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     </properties>
 
     <dependencies>

Modified: struts/struts2/trunk/archetypes/struts2-archetype-dbportlet/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/archetypes/struts2-archetype-dbportlet/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/archetypes/struts2-archetype-dbportlet/pom.xml (original)
+++ struts/struts2/trunk/archetypes/struts2-archetype-dbportlet/pom.xml Wed Oct 23 10:56:53 2013
@@ -19,6 +19,7 @@
 
     <properties>
         <maven.test.skip>true</maven.test.skip>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     </properties>
 
     <build>
@@ -89,4 +90,4 @@
         </profile>
     </profiles>
 
-</project>
\ No newline at end of file
+</project>

Modified: struts/struts2/trunk/archetypes/struts2-archetype-dbportlet/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/archetypes/struts2-archetype-dbportlet/src/main/resources/archetype-resources/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/archetypes/struts2-archetype-dbportlet/src/main/resources/archetype-resources/pom.xml (original)
+++ struts/struts2/trunk/archetypes/struts2-archetype-dbportlet/src/main/resources/archetype-resources/pom.xml Wed Oct 23 10:56:53 2013
@@ -12,6 +12,7 @@
 
     <properties>
         <struts2.version>${project.version}</struts2.version>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     </properties>    
 
 	<dependencies>

Modified: struts/struts2/trunk/archetypes/struts2-archetype-plugin/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/archetypes/struts2-archetype-plugin/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/archetypes/struts2-archetype-plugin/pom.xml (original)
+++ struts/struts2/trunk/archetypes/struts2-archetype-plugin/pom.xml Wed Oct 23 10:56:53 2013
@@ -19,6 +19,7 @@
 
     <properties>
         <maven.test.skip>true</maven.test.skip>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     </properties>
 
     <build>
@@ -88,4 +89,4 @@
             </build>
         </profile>
     </profiles>
-</project>
\ No newline at end of file
+</project>

Modified: struts/struts2/trunk/archetypes/struts2-archetype-plugin/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/archetypes/struts2-archetype-plugin/src/main/resources/archetype-resources/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/archetypes/struts2-archetype-plugin/src/main/resources/archetype-resources/pom.xml (original)
+++ struts/struts2/trunk/archetypes/struts2-archetype-plugin/src/main/resources/archetype-resources/pom.xml Wed Oct 23 10:56:53 2013
@@ -37,4 +37,7 @@
         <defaultGoal>install</defaultGoal>
     </build>
 
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/archetypes/struts2-archetype-portlet/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/archetypes/struts2-archetype-portlet/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/archetypes/struts2-archetype-portlet/pom.xml (original)
+++ struts/struts2/trunk/archetypes/struts2-archetype-portlet/pom.xml Wed Oct 23 10:56:53 2013
@@ -19,6 +19,7 @@
 
     <properties>
         <maven.test.skip>true</maven.test.skip>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     </properties>
 
     <build>
@@ -82,4 +83,4 @@
         </profile>
     </profiles>
 
-</project>
\ No newline at end of file
+</project>

Modified: struts/struts2/trunk/archetypes/struts2-archetype-starter/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/archetypes/struts2-archetype-starter/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/archetypes/struts2-archetype-starter/pom.xml (original)
+++ struts/struts2/trunk/archetypes/struts2-archetype-starter/pom.xml Wed Oct 23 10:56:53 2013
@@ -21,6 +21,7 @@
 
     <properties>
         <maven.test.skip>true</maven.test.skip>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     </properties>
 
     <build>

Modified: struts/struts2/trunk/archetypes/struts2-archetype-starter/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/archetypes/struts2-archetype-starter/src/main/resources/archetype-resources/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/archetypes/struts2-archetype-starter/src/main/resources/archetype-resources/pom.xml (original)
+++ struts/struts2/trunk/archetypes/struts2-archetype-starter/src/main/resources/archetype-resources/pom.xml Wed Oct 23 10:56:53 2013
@@ -11,6 +11,7 @@
 
     <properties>
         <struts2.version>${project.version}</struts2.version>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     </properties>
 
 	<dependencies>

Modified: struts/struts2/trunk/assembly/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/assembly/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/assembly/pom.xml (original)
+++ struts/struts2/trunk/assembly/pom.xml Wed Oct 23 10:56:53 2013
@@ -294,4 +294,7 @@
 
     </dependencies>
 
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/bundles/admin/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/bundles/admin/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/bundles/admin/pom.xml (original)
+++ struts/struts2/trunk/bundles/admin/pom.xml Wed Oct 23 10:56:53 2013
@@ -42,4 +42,7 @@
             </plugin>
         </plugins>
     </build>
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/bundles/demo/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/bundles/demo/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/bundles/demo/pom.xml (original)
+++ struts/struts2/trunk/bundles/demo/pom.xml Wed Oct 23 10:56:53 2013
@@ -65,4 +65,7 @@
             </plugin>
         </plugins>
     </build>
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/bundles/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/bundles/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/bundles/pom.xml (original)
+++ struts/struts2/trunk/bundles/pom.xml Wed Oct 23 10:56:53 2013
@@ -88,4 +88,7 @@
         </plugins>
     </reporting>
 
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/core/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/core/pom.xml (original)
+++ struts/struts2/trunk/core/pom.xml Wed Oct 23 10:56:53 2013
@@ -40,6 +40,7 @@
 
     <properties>
         <tlib.version>2.3</tlib.version>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     </properties>
 
     <build>

Modified: struts/struts2/trunk/plugins/cdi/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/cdi/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/cdi/pom.xml (original)
+++ struts/struts2/trunk/plugins/cdi/pom.xml Wed Oct 23 10:56:53 2013
@@ -72,4 +72,7 @@
 
     </dependencies>
 
-</project>
\ No newline at end of file
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
+</project>

Modified: struts/struts2/trunk/plugins/codebehind/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/codebehind/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/codebehind/pom.xml (original)
+++ struts/struts2/trunk/plugins/codebehind/pom.xml Wed Oct 23 10:56:53 2013
@@ -72,4 +72,7 @@
         </dependency>
 
    </dependencies>
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/plugins/config-browser/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/config-browser/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/config-browser/pom.xml (original)
+++ struts/struts2/trunk/plugins/config-browser/pom.xml Wed Oct 23 10:56:53 2013
@@ -39,4 +39,7 @@
        <url>http://svn.apache.org/viewcvs.cgi/struts/struts2/trunk/plugins/config-browser/</url>
     </scm>
 
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/plugins/convention/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/convention/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/convention/pom.xml (original)
+++ struts/struts2/trunk/plugins/convention/pom.xml Wed Oct 23 10:56:53 2013
@@ -55,4 +55,7 @@
         </dependency>
     </dependencies>
 
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/plugins/dojo/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/dojo/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/dojo/pom.xml (original)
+++ struts/struts2/trunk/plugins/dojo/pom.xml Wed Oct 23 10:56:53 2013
@@ -86,6 +86,7 @@
 
     <properties>
         <tlib.version>2.2</tlib.version>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     </properties>
 
     <build>

Modified: struts/struts2/trunk/plugins/dwr/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/dwr/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/dwr/pom.xml (original)
+++ struts/struts2/trunk/plugins/dwr/pom.xml Wed Oct 23 10:56:53 2013
@@ -46,4 +46,7 @@
         </dependency>
     </dependencies>
 
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/plugins/embeddedjsp/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/embeddedjsp/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/embeddedjsp/pom.xml (original)
+++ struts/struts2/trunk/plugins/embeddedjsp/pom.xml Wed Oct 23 10:56:53 2013
@@ -105,4 +105,7 @@
             </plugin>
         </plugins>
     </build>
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/plugins/gxp/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/gxp/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/gxp/pom.xml (original)
+++ struts/struts2/trunk/plugins/gxp/pom.xml Wed Oct 23 10:56:53 2013
@@ -42,4 +42,7 @@
         </plugins>
     </build>
 
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/plugins/jasperreports/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/jasperreports/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/jasperreports/pom.xml (original)
+++ struts/struts2/trunk/plugins/jasperreports/pom.xml Wed Oct 23 10:56:53 2013
@@ -51,4 +51,7 @@
             <scope>provided</scope>
         </dependency>
     </dependencies>
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/plugins/javatemplates/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/javatemplates/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/javatemplates/pom.xml (original)
+++ struts/struts2/trunk/plugins/javatemplates/pom.xml Wed Oct 23 10:56:53 2013
@@ -55,4 +55,7 @@
         </dependency>
     </dependencies>
 
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/plugins/jfreechart/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/jfreechart/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/jfreechart/pom.xml (original)
+++ struts/struts2/trunk/plugins/jfreechart/pom.xml Wed Oct 23 10:56:53 2013
@@ -81,4 +81,7 @@
         </dependency>
 
     </dependencies>
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/plugins/jsf/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/jsf/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/jsf/pom.xml (original)
+++ struts/struts2/trunk/plugins/jsf/pom.xml Wed Oct 23 10:56:53 2013
@@ -54,4 +54,7 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/plugins/json/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/json/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/json/pom.xml (original)
+++ struts/struts2/trunk/plugins/json/pom.xml Wed Oct 23 10:56:53 2013
@@ -104,4 +104,7 @@
         </dependency>
 
     </dependencies>
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/plugins/junit/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/junit/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/junit/pom.xml (original)
+++ struts/struts2/trunk/plugins/junit/pom.xml Wed Oct 23 10:56:53 2013
@@ -81,4 +81,7 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/plugins/osgi/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/osgi/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/osgi/pom.xml (original)
+++ struts/struts2/trunk/plugins/osgi/pom.xml Wed Oct 23 10:56:53 2013
@@ -58,4 +58,7 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/plugins/oval/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/oval/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/oval/pom.xml (original)
+++ struts/struts2/trunk/plugins/oval/pom.xml Wed Oct 23 10:56:53 2013
@@ -76,4 +76,7 @@
         </dependency>
 
     </dependencies>
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/plugins/pell-multipart/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/pell-multipart/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/pell-multipart/pom.xml (original)
+++ struts/struts2/trunk/plugins/pell-multipart/pom.xml Wed Oct 23 10:56:53 2013
@@ -47,4 +47,7 @@
             <scope>provided</scope>
         </dependency>
     </dependencies>
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/plugins/plexus/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/plexus/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/plexus/pom.xml (original)
+++ struts/struts2/trunk/plugins/plexus/pom.xml Wed Oct 23 10:56:53 2013
@@ -46,4 +46,7 @@
             <version>1.0-alpha-10</version>
         </dependency>
    </dependencies>
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/plugins/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/pom.xml (original)
+++ struts/struts2/trunk/plugins/pom.xml Wed Oct 23 10:56:53 2013
@@ -92,4 +92,7 @@
 
     </dependencies>
 
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/plugins/portlet-tiles/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/portlet-tiles/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/portlet-tiles/pom.xml (original)
+++ struts/struts2/trunk/plugins/portlet-tiles/pom.xml Wed Oct 23 10:56:53 2013
@@ -64,4 +64,7 @@
             <scope>runtime</scope>
         </dependency>
     </dependencies>
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/plugins/portlet/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/portlet/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/portlet/pom.xml (original)
+++ struts/struts2/trunk/plugins/portlet/pom.xml Wed Oct 23 10:56:53 2013
@@ -122,4 +122,7 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
-</project>
\ No newline at end of file
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
+</project>

Modified: struts/struts2/trunk/plugins/rest/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/rest/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/rest/pom.xml (original)
+++ struts/struts2/trunk/plugins/rest/pom.xml Wed Oct 23 10:56:53 2013
@@ -35,6 +35,7 @@
 
     <properties>
         <jackson.version>1.9.2</jackson.version>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     </properties>
 
     <dependencies>

Modified: struts/struts2/trunk/plugins/sitegraph/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/sitegraph/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/sitegraph/pom.xml (original)
+++ struts/struts2/trunk/plugins/sitegraph/pom.xml Wed Oct 23 10:56:53 2013
@@ -164,4 +164,7 @@
             </plugin>
         </plugins>
     </reporting>
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/plugins/sitemesh/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/sitemesh/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/sitemesh/pom.xml (original)
+++ struts/struts2/trunk/plugins/sitemesh/pom.xml Wed Oct 23 10:56:53 2013
@@ -58,4 +58,7 @@
         </dependency>
 
    </dependencies>
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/plugins/spring/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/spring/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/spring/pom.xml (original)
+++ struts/struts2/trunk/plugins/spring/pom.xml Wed Oct 23 10:56:53 2013
@@ -85,4 +85,7 @@
 
    </dependencies>
 
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/plugins/struts1/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/struts1/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/struts1/pom.xml (original)
+++ struts/struts2/trunk/plugins/struts1/pom.xml Wed Oct 23 10:56:53 2013
@@ -77,4 +77,7 @@
         </dependency>
 
     </dependencies>
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/plugins/testng/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/testng/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/testng/pom.xml (original)
+++ struts/struts2/trunk/plugins/testng/pom.xml Wed Oct 23 10:56:53 2013
@@ -62,4 +62,7 @@
         </dependency>
 
     </dependencies>
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/plugins/tiles/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/tiles/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/tiles/pom.xml (original)
+++ struts/struts2/trunk/plugins/tiles/pom.xml Wed Oct 23 10:56:53 2013
@@ -56,4 +56,7 @@
         </dependency>
 
     </dependencies>
+    <properties>
+    	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 </project>

Modified: struts/struts2/trunk/plugins/tiles3/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/tiles3/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/tiles3/pom.xml (original)
+++ struts/struts2/trunk/plugins/tiles3/pom.xml Wed Oct 23 10:56:53 2013
@@ -41,6 +41,7 @@
 
     <properties>
         <tiles3.version>3.0.1</tiles3.version>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     </properties>
 
     <dependencies>

Modified: struts/struts2/trunk/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/pom.xml (original)
+++ struts/struts2/trunk/pom.xml Wed Oct 23 10:56:53 2013
@@ -93,6 +93,7 @@
         <siteContent.path>${site.mainDirectory}/staging</siteContent.path>
         <scmCheckout.path>${site.mainDirectory}/scm</scmCheckout.path>
         <siteDeploy.url>file://${siteContent.path}</siteDeploy.url>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     </properties>
 
     <profiles>

Modified: struts/struts2/trunk/xwork-core/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/xwork-core/pom.xml?rev=1534982&r1=1534981&r2=1534982&view=diff
==============================================================================
--- struts/struts2/trunk/xwork-core/pom.xml (original)
+++ struts/struts2/trunk/xwork-core/pom.xml Wed Oct 23 10:56:53 2013
@@ -21,6 +21,7 @@
 
     <properties>
         <currentVersion>${project.version}</currentVersion>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     </properties>
 
     <build>