Author: carlos
Date: Mon Dec 19 06:29:41 2005
New Revision: 357694

URL: http://svn.apache.org/viewcvs?rev=357694&view=rev
Log:
Added maven.aspectj.failonerror property.
Submitted By: Shinobu Kawai
PR: MPASPECTJ-24

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

Modified: maven/maven-1/plugins/trunk/aspectj/plugin.jelly
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/aspectj/plugin.jelly?rev=357694&r1=357693&r2=357694&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/aspectj/plugin.jelly (original)
+++ maven/maven-1/plugins/trunk/aspectj/plugin.jelly Mon Dec 19 06:29:41 2005
@@ -50,6 +50,7 @@
           incremental="${maven.aspectj.incremental}"
           XnoWeave="${maven.aspectj.noweave}"
           Xlint="${maven.aspectj.lint}"
+          failonerror="${maven.aspectj.failonerror}"
           destDir="${destDir}"
           sourceRootCopyFilter="${maven.aspectj.sourceRootCopyFilter}"
           debug="${maven.aspectj.debug}"

Modified: maven/maven-1/plugins/trunk/aspectj/plugin.properties
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/aspectj/plugin.properties?rev=357694&r1=357693&r2=357694&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/aspectj/plugin.properties (original)
+++ maven/maven-1/plugins/trunk/aspectj/plugin.properties Mon Dec 19 06:29:41 
2005
@@ -69,4 +69,5 @@
 # Level of language usage messages. Possible values are error, warning and 
ignore
 maven.aspectj.lint=warning
 
-
+# If true, throw BuildException to halt build if there are any compiler errors.
+maven.aspectj.failonerror=true

Modified: maven/maven-1/plugins/trunk/aspectj/xdocs/changes.xml
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/aspectj/xdocs/changes.xml?rev=357694&r1=357693&r2=357694&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/aspectj/xdocs/changes.xml (original)
+++ maven/maven-1/plugins/trunk/aspectj/xdocs/changes.xml Mon Dec 19 06:29:41 
2005
@@ -27,7 +27,10 @@
     <author email="[EMAIL PROTECTED]">Carlos Sanchez</author>
   </properties>
   <body>
-    <release version="3.3-SNAPSHOT" date="in CVS">
+    <release version="3.3-SNAPSHOT" date="in Subversion">
+      <action dev="carlos" type="add" issue="MPASPECTJ-24" due-to="Shinobu 
Kawai">
+        Added <code>maven.aspectj.failonerror</code> property.
+      </action>
       <action dev="vmassol" type="update" issue="MPASPECTJ-19">
         Add support for <code>iajc</code>'s <code>messageHolderClass</code> 
attribute
         and added <code>maven.dependency.classpath</code> to the 

Modified: maven/maven-1/plugins/trunk/aspectj/xdocs/properties.xml
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/aspectj/xdocs/properties.xml?rev=357694&r1=357693&r2=357694&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/aspectj/xdocs/properties.xml (original)
+++ maven/maven-1/plugins/trunk/aspectj/xdocs/properties.xml Mon Dec 19 
06:29:41 2005
@@ -176,6 +176,16 @@
             interface and having a public no-argument constructor.
           </td>
         </tr>
+
+        <tr>
+          <td>maven.aspectj.failonerror</td>
+          <td>Yes</td>
+          <td>
+            If <code>true</code>, throw <code>BuildException</code> to halt 
build if there are any compiler errors.
+            If <code>false</code>, continue notwithstanding compile errors.
+            Defaults to <code>true</code>.
+          </td>
+        </tr>
         
       </table>
     </section>


Reply via email to