Make a report with compiler output

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@291230 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
carlos
2005-09-24 00:41:01 +00:00
parent f62392ae8f
commit 80ad091328
7 changed files with 124 additions and 2 deletions

View File

@@ -25,6 +25,9 @@
<author email="kschrader@karmalab.org">Kurt Schrader</author>
</properties>
<body>
<release version="1.6-SNAPSHOT" date="in SVN">
<action dev="carlos" type="add" issue="MPJAVA-40" due-to="Ron Gallagher">Make a report with compiler output</action>
</release>
<release version="1.5" date="2004-12-04">
<action dev="vmassol" type="fix" issue="MPJAVA-22">Make it work by default with any version of the JDK</action>
<action dev="brett" type="update">Deprecate dependency handle</action>

View File

@@ -59,6 +59,30 @@
</p>
</td>
</tr>
<tr>
<td>maven-java-plugin:register</td>
<td>
<p>
Register the java compiler output report.
</p>
</td>
</tr>
<tr>
<td>maven-java-plugin:deregister</td>
<td>
<p>
Deregister the java compiler output report.
</p>
</td>
</tr>
<tr>
<td>maven-java-plugin:report</td>
<td>
<p>
Generate the java compiler output report.
</p>
</td>
</tr>
<tr>
<td>java:jar</td>
<td>

View File

@@ -38,6 +38,11 @@
by this plugin, please see the <a href="properties.html">properties</a>
document.
</p>
<p>
You can get a report from the compiler output adding
<code>maven-java-plugin</code> to the reports section of your pom.
(note that you need to set to true <code>maven.compile.fork</code>)
</p>
</section>
</body>
</document>

View File

@@ -194,6 +194,14 @@
</p>
</td>
</tr>
<tr>
<td>maven.compile.log</td>
<td>Yes</td>
<td>
<p>Where to save the output of the compiler. Only works when fork is true.</p>
<p>The default value for this property is ${maven.build.dir}/compile.log</p>
</td>
</tr>
<tr>
<td>pom.build.sourceModifications</td>
<td>Yes</td>