PR: MPJAVA-18

allow specifying external JDK


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115205 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
brett
2004-05-08 01:02:29 +00:00
parent 4a2ae6a96f
commit ba57b4b020
2 changed files with 13 additions and 0 deletions

View File

@@ -73,6 +73,18 @@
</j:if>
</j:forEach>
<j:if test="${context.getVariable('maven.compile.bootclasspath') != null}">
<ant:bootclasspath>
<ant:pathelement path="${maven.compile.bootclasspath}"/>
</ant:bootclasspath>
</j:if>
<j:if test="${context.getVariable('maven.compile.extdirs') != null}">
<ant:bootclasspath>
<ant:pathelement path="${maven.compile.extdirs}"/>
</ant:bootclasspath>
</j:if>
<ant:classpath>
<ant:path refid="maven.dependency.classpath"/>
<ant:pathelement path="${maven.build.dest}"/>

View File

@@ -27,6 +27,7 @@
<body>
<release version="1.4-SNAPSHOT" date="in CVS">
<action dev="brett" type="fix" issue="MPJAVA-18" due-to="Lynn Richards">Allow specifying a JDK to compile with other than the running one</action>
<action dev="brett" type="fix" issue="MPJAVA-1" due-to="Scott Foster">Add memory usage parameters to pass to the ant javac task</action>
<action dev="brett" type="fix">Add source property, default to 1.3. This is required to use JDK 1.5.</action>
</release>