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:
parent
d6386ad596
commit
54a4c7bfdb
@ -69,6 +69,7 @@
|
|||||||
<ant:javac
|
<ant:javac
|
||||||
destdir="${maven.build.dest}"
|
destdir="${maven.build.dest}"
|
||||||
excludes="**/package.html"
|
excludes="**/package.html"
|
||||||
|
failonerror="${maven.compile.failonerror}"
|
||||||
debug="${maven.compile.debug}"
|
debug="${maven.compile.debug}"
|
||||||
debuglevel="${maven.compile.debuglevel}"
|
debuglevel="${maven.compile.debuglevel}"
|
||||||
nowarn="${maven.compile.nowarn}"
|
nowarn="${maven.compile.nowarn}"
|
||||||
|
|||||||
@ -22,3 +22,4 @@ maven.compile.log=${maven.build.dir}/compile.log
|
|||||||
maven.compile.deprecation=on
|
maven.compile.deprecation=on
|
||||||
maven.compile.nowarn=off
|
maven.compile.nowarn=off
|
||||||
maven.compile.debuglevel=lines,vars,source
|
maven.compile.debuglevel=lines,vars,source
|
||||||
|
maven.compile.failonerror=true
|
||||||
|
|||||||
@ -26,6 +26,7 @@
|
|||||||
</properties>
|
</properties>
|
||||||
<body>
|
<body>
|
||||||
<release version="1.6-SNAPSHOT" date="in SVN">
|
<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-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="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>
|
<action dev="ltheussl" type="fix" issue="MPJAVA-23">Set <code>maven.compile.deprecation=on</code> by default.</action>
|
||||||
|
|||||||
@ -256,6 +256,21 @@
|
|||||||
</p>
|
</p>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</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>
|
</table>
|
||||||
</section>
|
</section>
|
||||||
<section name="Other Settings">
|
<section name="Other Settings">
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user