Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "User talk:Gaurangtpatel.gmail.com"

(== A macrodef for compiling Java code using the javac Ant task could look like this: ==)
(A macrodef for compiling Java code using the javac Ant task could look like this:)
Line 19: Line 19:
 
   </sequential>
 
   </sequential>
 
</macrodef>
 
</macrodef>
 +
 +
 +
==== Challenges and Risks ====
 +
It will be interesting to see how deep I can go into developing this enhancement to platform ant.
 +
Risks: I don't affevt any of the current functionalities.

Revision as of 14:41, 3 April 2009

Proposal: Ant buildfile refactorings

Ant macros can be used to achieve re usability of scripts:


A macrodef for compiling Java code using the javac Ant task could look like this:

<macrodef name="m_compile">

  <attribute name="build.dir" default="${build.dir}" />
  <attribute name="classpath.id" default="default.classpath" />
  <attribute name="src.dir" default="${src.java.dir}" />
  <sequential>
     <mkdir dir="@{build.dir}" />
     <javac destdir="@{build.dir}" debug="${debug}"
       optimize="${optimize}">
        <classpath refid="@{classpath.id}" />
        <src path="@{src.dir}" />
     </javac>
  </sequential>

</macrodef>


Challenges and Risks

It will be interesting to see how deep I can go into developing this enhancement to platform ant. Risks: I don't affevt any of the current functionalities.

Back to the top