PR: MPJAVA-41

New property maven.compile.failonerror.


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@379563 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
ltheussl 2006-02-21 19:46:31 +00:00
parent d6386ad596
commit 54a4c7bfdb
4 changed files with 19 additions and 1 deletions

View File

@ -69,6 +69,7 @@
<ant:javac
destdir="${maven.build.dest}"
excludes="**/package.html"
failonerror="${maven.compile.failonerror}"
debug="${maven.compile.debug}"
debuglevel="${maven.compile.debuglevel}"
nowarn="${maven.compile.nowarn}"

View File

@ -22,3 +22,4 @@ maven.compile.log=${maven.build.dir}/compile.log
maven.compile.deprecation=on
maven.compile.nowarn=off
maven.compile.debuglevel=lines,vars,source
maven.compile.failonerror=true

View File

@ -26,6 +26,7 @@
</properties>
<body>
<release version="1.6-SNAPSHOT" date="in SVN">
<action dev="ltheussl" type="add" issue="MPJAVA-41">New property <code>maven.compile.failonerror</code>.</action>
<action dev="ltheussl" type="add" issue="MPJAVA-32">New property <code>maven.compile.debuglevel</code>.</action>
<action dev="ltheussl" type="add" issue="MPJAVA-44">New property <code>maven.compile.nowarn</code>.</action>
<action dev="ltheussl" type="fix" issue="MPJAVA-23">Set <code>maven.compile.deprecation=on</code> by default.</action>

View File

@ -256,6 +256,21 @@
</p>
</td>
</tr>
<tr>
<td>maven.compile.failonerror</td>
<td>Yes</td>
<td>
<p>
Indicates whether the build will continue even if there are
compilation errors; defaults to <code>true</code>.
</p>
<p>
Corresponds to the <code>failonerror</code> attribute for the ant
<a href="http://ant.apache.org/manual/CoreTasks/javac.html">javac</a>
task.
</p>
</td>
</tr>
</table>
</section>
<section name="Other Settings">