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 "Modeling Project Releng/Building/Using Ant-Contrib"

(New page: To add ant-contrib to your buildAll.xml, use this: ... <!-- load up this build's build.cfg file --> <property file="${buildConfigFile}" /> <taskdef resource="net/sf/antcontrib/antli...)
 
 
(One intermediate revision by the same user not shown)
Line 15: Line 15:
 
  </taskdef>
 
  </taskdef>
 
  ...
 
  ...
 +
 +
[[Category:Releng]] [[Category:Modeling]]

Latest revision as of 17:24, 18 December 2008

To add ant-contrib to your buildAll.xml, use this:

...
<property file="${buildConfigFile}" />

<taskdef resource="net/sf/antcontrib/antlib.xml">
  <classpath>
    <pathelement path="${classpath}" />
    <pathelement location="${thirdPartyJarsDir}/ant-contrib.jar" />
    <fileset dir="/usr/share/java">
      <include name="**/ant-contrib*.jar" />
    </fileset>
  </classpath>
</taskdef>
...

Back to the top