Author: ltheussl
Date: Fri Apr 13 00:33:23 2007
New Revision: 528376

URL: http://svn.apache.org/viewvc?view=rev&rev=528376
Log:
PR: MPJALOPY-12
Add a property that controls the source code encoding. Thanks to Joachim Bader.

Modified:
    maven/maven-1/plugins/trunk/jalopy/plugin.jelly
    maven/maven-1/plugins/trunk/jalopy/plugin.properties
    maven/maven-1/plugins/trunk/jalopy/project.xml
    maven/maven-1/plugins/trunk/jalopy/xdocs/changes.xml
    maven/maven-1/plugins/trunk/jalopy/xdocs/properties.xml

Modified: maven/maven-1/plugins/trunk/jalopy/plugin.jelly
URL: 
http://svn.apache.org/viewvc/maven/maven-1/plugins/trunk/jalopy/plugin.jelly?view=diff&rev=528376&r1=528375&r2=528376
==============================================================================
--- maven/maven-1/plugins/trunk/jalopy/plugin.jelly (original)
+++ maven/maven-1/plugins/trunk/jalopy/plugin.jelly Fri Apr 13 00:33:23 2007
@@ -51,6 +51,7 @@
             inspect="${maven.jalopy.inspect}"
             backup="${maven.jalopy.backup}"
             force="${maven.jalopy.force}"
+            encoding="${maven.jalopy.encoding}"
             sourceDirectory="${pom.build.sourceDirectory}"
             testSourceDirectory="${pom.build.unitTestSourceDirectory}"
             srcIncludesPattern="${maven.jalopy.src.filesetInclude}"

Modified: maven/maven-1/plugins/trunk/jalopy/plugin.properties
URL: 
http://svn.apache.org/viewvc/maven/maven-1/plugins/trunk/jalopy/plugin.properties?view=diff&rev=528376&r1=528375&r2=528376
==============================================================================
--- maven/maven-1/plugins/trunk/jalopy/plugin.properties (original)
+++ maven/maven-1/plugins/trunk/jalopy/plugin.properties Fri Apr 13 00:33:23 
2007
@@ -25,6 +25,7 @@
 maven.jalopy.inspect=false
 maven.jalopy.backup=false
 maven.jalopy.force=false
+maven.jalopy.encoding=${maven.compile.encoding}
 maven.jalopy.filesetInclude=**/*.java
 maven.jalopy.filesetExclude=
 

Modified: maven/maven-1/plugins/trunk/jalopy/project.xml
URL: 
http://svn.apache.org/viewvc/maven/maven-1/plugins/trunk/jalopy/project.xml?view=diff&rev=528376&r1=528375&r2=528376
==============================================================================
--- maven/maven-1/plugins/trunk/jalopy/project.xml (original)
+++ maven/maven-1/plugins/trunk/jalopy/project.xml Fri Apr 13 00:33:23 2007
@@ -22,7 +22,7 @@
   <pomVersion>3</pomVersion>
   <id>maven-jalopy-plugin</id>
   <name>Maven Jalopy Plugin</name>
-  <currentVersion>1.5</currentVersion>
+  <currentVersion>1.5.1-SNAPSHOT</currentVersion>
   <description/>
   <shortDescription>Reformat java source</shortDescription>
   <versions>

Modified: maven/maven-1/plugins/trunk/jalopy/xdocs/changes.xml
URL: 
http://svn.apache.org/viewvc/maven/maven-1/plugins/trunk/jalopy/xdocs/changes.xml?view=diff&rev=528376&r1=528375&r2=528376
==============================================================================
--- maven/maven-1/plugins/trunk/jalopy/xdocs/changes.xml (original)
+++ maven/maven-1/plugins/trunk/jalopy/xdocs/changes.xml Fri Apr 13 00:33:23 
2007
@@ -24,6 +24,7 @@
   </properties>
   <body>
     <release version="1.5.1-SNAPSHOT" date="In SVN">
+      <action dev="ltheussl" type="add" issue="MPJALOPY-12" due-to="Joachim 
Bader">Add a property that controls the source code encoding.</action>
       <action dev="aheritier" type="update" issue="MAVEN-1803">Upgrade 
plexus-utils to version 1.0.5</action>
     </release>
     <release version="1.5" date="2006-05-07">

Modified: maven/maven-1/plugins/trunk/jalopy/xdocs/properties.xml
URL: 
http://svn.apache.org/viewvc/maven/maven-1/plugins/trunk/jalopy/xdocs/properties.xml?view=diff&rev=528376&r1=528375&r2=528376
==============================================================================
--- maven/maven-1/plugins/trunk/jalopy/xdocs/properties.xml (original)
+++ maven/maven-1/plugins/trunk/jalopy/xdocs/properties.xml Fri Apr 13 00:33:23 
2007
@@ -89,6 +89,16 @@
           </td>
         </tr>
         <tr>
+          <td>maven.jalopy.encoding</td>
+          <td>Yes</td>
+          <td>
+            Sets the encoding that controls how Jalopy interprets text files
+            containing characters beyond the ASCII character set.
+            Defaults to the value of <code>maven.compile.encoding</code>, if
+            this is not set, the platform's default encoding will be used.
+          </td>
+        </tr>  
+        <tr>
           <td>maven.jalopy.filesetInclude</td>
           <td>Yes</td>
           <td>


Reply via email to