Skip to content

Instantly share code, notes, and snippets.

@damithsj
Last active September 27, 2023 09:17
Show Gist options
  • Save damithsj/a9a1729a3766ec10a5f6f5895853edd7 to your computer and use it in GitHub Desktop.
Save damithsj/a9a1729a3766ec10a5f6f5895853edd7 to your computer and use it in GitHub Desktop.
ifs-build-xml-add-3rd-party-jar
<target name="build" depends="compile">
<jar jarfile="${dist}/IFSTestTransformer-1.0.1.jar" basedir="${build}">
<fileset dir="${lib}" includes="your-external-lib.jar" />
<manifest>
<attribute name="Transformer-class" value="TestTransformer"/>
</manifest>
</jar>
</target>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment