Allows the clover plugin to hook onto and alter compilation settings on the fly.

PR: MAVEN-372


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113479 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
bwalding 2003-06-10 10:13:54 +00:00
parent cd05f4cab1
commit 2932b1be0a

View File

@ -3,6 +3,7 @@
<project
xmlns:j="jelly:core"
xmlns:ant="jelly:ant"
xmlns:define="jelly:define"
xmlns:resources="resources">
<j:choose>
@ -42,7 +43,7 @@
<goal name="java:compile"
description="Compile the project"
prereqs="java:prepare-filesystem">
<echo>Compiling to ${maven.build.dest}</echo>
<j:choose>
<j:when test="${sourcesPresent == 'true'}">
<ant:javac
@ -129,4 +130,10 @@
/>
</j:if>
</goal>
<define:taglib uri="java">
<define:tag name="dependency-handle">
<!-- XXX Use this tag to allow this plugin to be loaded into another -->
</define:tag>
</define:taglib>
</project>