You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by ca...@apache.org on 2005/09/30 02:31:21 UTC

svn commit: r292588 - in /maven/maven-1/plugins/trunk/checkstyle: plugin.properties xdocs/changes.xml xdocs/properties.xml

Author: carlos
Date: Thu Sep 29 17:31:17 2005
New Revision: 292588

URL: http://svn.apache.org/viewcvs?rev=292588&view=rev
Log:
Added maven.checkstyle.dir and move output files there.

Modified:
    maven/maven-1/plugins/trunk/checkstyle/plugin.properties
    maven/maven-1/plugins/trunk/checkstyle/xdocs/changes.xml
    maven/maven-1/plugins/trunk/checkstyle/xdocs/properties.xml

Modified: maven/maven-1/plugins/trunk/checkstyle/plugin.properties
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/checkstyle/plugin.properties?rev=292588&r1=292587&r2=292588&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/checkstyle/plugin.properties (original)
+++ maven/maven-1/plugins/trunk/checkstyle/plugin.properties Thu Sep 29 17:31:17 2005
@@ -20,10 +20,11 @@
 # Checkstyle plugin
 # -------------------------------------------------------------------
 
+maven.checkstyle.dir = ${maven.build.dir}/checkstyle
 maven.checkstyle.includes = **/*.java
 maven.checkstyle.excludes = 
 maven.checkstyle.fail.on.violation = false
-maven.checkstyle.cache.file = ${maven.build.dir}/checkstyle-cachefile
+maven.checkstyle.cache.file = ${maven.checkstyle.dir}/checkstyle-cachefile
 maven.checkstyle.format = sun
 maven.checkstyle.header.file = ${basedir}/LICENSE.txt
 maven.checkstyle.check.tests=true
@@ -33,5 +34,5 @@
 maven.checkstyle.usefile = true
 
 # Output files
-maven.checkstyle.output.xml=${maven.build.dir}/checkstyle-raw-report.xml
-maven.checkstyle.output.txt=${maven.build.dir}/checkstyle-raw-report.txt
+maven.checkstyle.output.xml = ${maven.checkstyle.dir}/checkstyle-raw-report.xml
+maven.checkstyle.output.txt = ${maven.checkstyle.dir}/checkstyle-raw-report.txt

Modified: maven/maven-1/plugins/trunk/checkstyle/xdocs/changes.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/checkstyle/xdocs/changes.xml?rev=292588&r1=292587&r2=292588&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/checkstyle/xdocs/changes.xml (original)
+++ maven/maven-1/plugins/trunk/checkstyle/xdocs/changes.xml Thu Sep 29 17:31:17 2005
@@ -26,6 +26,7 @@
   </properties>
   <body>
     <release version="3.0-SNAPSHOT" date="in SVN">
+      <action dev="carlos" type="update">Added maven.checkstyle.dir and move output files there.</action>
       <action dev="carlos" type="add">Added properties maven.checkstyle.output.xml and maven.checkstyle.output.txt</action>
       <action dev="aheritier" type="update">It requires at least maven-plugin-plugin v1.7.</action>
       <action dev="aheritier" type="update">It requires at least maven-xdoc-plugin v1.10.</action>

Modified: maven/maven-1/plugins/trunk/checkstyle/xdocs/properties.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/checkstyle/xdocs/properties.xml?rev=292588&r1=292587&r2=292588&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/checkstyle/xdocs/properties.xml (original)
+++ maven/maven-1/plugins/trunk/checkstyle/xdocs/properties.xml Thu Sep 29 17:31:17 2005
@@ -28,6 +28,14 @@
       <table>
         <tr><th>Property</th><th>Optional?</th><th>Description</th></tr>
         <tr>
+          <td>maven.checkstyle.dir</td>
+          <td>Yes</td>
+          <td>
+            Output directory for output checkstyle files
+            Default <code>${maven.build.dir}/checkstyle</code>.
+          </td>
+        </tr>
+        <tr>
           <td>maven.checkstyle.includes</td>
           <td>Yes</td>
           <td>
@@ -112,7 +120,7 @@
           <td>
             Specifies the cache file used to speed up Checkstyle on
             successive runs.  The default value is
-            <code>${maven.build.dest}/checkstyle-cachefile</code>.
+            <code>${maven.checkstyle.dir}/checkstyle-cachefile</code>.
           </td>
         </tr>
         <tr>
@@ -142,7 +150,7 @@
           <td>Yes</td>
           <td>
             Output file where the xml report is written.
-            Defaults to <code>${maven.build.dir}/checkstyle-raw-report.xml</code>.
+            Defaults to <code>${maven.checkstyle.dir}/checkstyle-raw-report.xml</code>.
           </td>
         </tr>
         <tr>
@@ -150,7 +158,7 @@
           <td>Yes</td>
           <td>
             Output file where the txt report is written.
-            Defaults to <code>${maven.build.dir}/checkstyle-raw-report.txt</code>.
+            Defaults to <code>${maven.checkstyle.dir}/checkstyle-raw-report.txt</code>.
           </td>
         </tr>
       </table>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org