PR: MPJAVA-32
New property maven.compile.debuglevel. git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@379560 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
943fc8d59c
commit
d6386ad596
@ -70,6 +70,7 @@
|
||||
destdir="${maven.build.dest}"
|
||||
excludes="**/package.html"
|
||||
debug="${maven.compile.debug}"
|
||||
debuglevel="${maven.compile.debuglevel}"
|
||||
nowarn="${maven.compile.nowarn}"
|
||||
deprecation="${maven.compile.deprecation}"
|
||||
optimize="${maven.compile.optimize}">
|
||||
|
||||
@ -21,3 +21,4 @@
|
||||
maven.compile.log=${maven.build.dir}/compile.log
|
||||
maven.compile.deprecation=on
|
||||
maven.compile.nowarn=off
|
||||
maven.compile.debuglevel=lines,vars,source
|
||||
@ -26,6 +26,7 @@
|
||||
</properties>
|
||||
<body>
|
||||
<release version="1.6-SNAPSHOT" date="in SVN">
|
||||
<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>
|
||||
<action dev="ltheussl" type="fix" issue="MPJAVA-30">Compiling gives incorrect warning about target JVM version.</action>
|
||||
|
||||
@ -53,6 +53,22 @@
|
||||
Used by the "java:compile" goal.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>maven.compile.debuglevel</td>
|
||||
<td>Yes</td>
|
||||
<td>
|
||||
<p>
|
||||
Keyword list to be appended to the <code>-g</code> command-line switch.
|
||||
This is only used if <code>maven.compile.debug=on</code>.
|
||||
Defaults to <code>lines,vars,source</code>.
|
||||
</p>
|
||||
<p>
|
||||
Corresponds to the <code>debuglevel</code> attribute for the ant
|
||||
<a href="http://ant.apache.org/manual/CoreTasks/javac.html">javac</a>
|
||||
task.
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>maven.compile.deprecation</td>
|
||||
<td>Yes</td>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user