Added maven.aspectj.failonerror property.

Submitted By: Shinobu Kawai
PR: MPASPECTJ-24


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@357694 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
carlos 2005-12-19 14:29:41 +00:00
parent febb0b3b29
commit bbeefb6ca8
4 changed files with 17 additions and 2 deletions

View File

@ -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}"

View File

@ -69,4 +69,5 @@ maven.aspectj.noweave=false
# 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

View File

@ -27,7 +27,10 @@
<author email="carlos@apache.org">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

View File

@ -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>