You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by lt...@apache.org on 2006/02/21 20:02:10 UTC

svn commit: r379560 - in /maven/maven-1/plugins/trunk/java: plugin.jelly plugin.properties xdocs/changes.xml xdocs/properties.xml

Author: ltheussl
Date: Tue Feb 21 11:02:00 2006
New Revision: 379560

URL: http://svn.apache.org/viewcvs?rev=379560&view=rev
Log:
PR: MPJAVA-32
New property maven.compile.debuglevel.

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

Modified: maven/maven-1/plugins/trunk/java/plugin.jelly
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/java/plugin.jelly?rev=379560&r1=379559&r2=379560&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/java/plugin.jelly (original)
+++ maven/maven-1/plugins/trunk/java/plugin.jelly Tue Feb 21 11:02:00 2006
@@ -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}">

Modified: maven/maven-1/plugins/trunk/java/plugin.properties
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/java/plugin.properties?rev=379560&r1=379559&r2=379560&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/java/plugin.properties (original)
+++ maven/maven-1/plugins/trunk/java/plugin.properties Tue Feb 21 11:02:00 2006
@@ -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
\ No newline at end of file

Modified: maven/maven-1/plugins/trunk/java/xdocs/changes.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/java/xdocs/changes.xml?rev=379560&r1=379559&r2=379560&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/java/xdocs/changes.xml (original)
+++ maven/maven-1/plugins/trunk/java/xdocs/changes.xml Tue Feb 21 11:02:00 2006
@@ -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>

Modified: maven/maven-1/plugins/trunk/java/xdocs/properties.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/java/xdocs/properties.xml?rev=379560&r1=379559&r2=379560&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/java/xdocs/properties.xml (original)
+++ maven/maven-1/plugins/trunk/java/xdocs/properties.xml Tue Feb 21 11:02:00 2006
@@ -54,6 +54,22 @@
           </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>
           <td>