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

Modeling Project Releng/Building/Using Ant-Contrib

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