brett       2004/05/07 18:02:29

  Modified:    java     plugin.jelly
               java/xdocs changes.xml
  Log:
  PR: MPJAVA-18
  allow specifying external JDK
  
  Revision  Changes    Path
  1.27      +12 -0     maven-plugins/java/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven-plugins/java/plugin.jelly,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- plugin.jelly      8 May 2004 00:57:44 -0000       1.26
  +++ plugin.jelly      8 May 2004 01:02:29 -0000       1.27
  @@ -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}"/>
  
  
  
  1.10      +1 -0      maven-plugins/java/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/java/xdocs/changes.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- changes.xml       8 May 2004 00:57:44 -0000       1.9
  +++ changes.xml       8 May 2004 01:02:29 -0000       1.10
  @@ -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>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to