ProjectBuilder.xml (Ant editor in eclipse)
- Yavneeka Patel
- Mar 25, 2015
- 1 min read
//The following code allows me to make a jar for the generic HelloWorld project
//I'm unsure if this is an executable jar that this makes
<?xml version="1.0" encoding="UTF-8"?>
<project name="HW.makejar" default="makejar" basedir=".">
<target name ="makejar" description="Create a jar for the HW project">
<jar jarfile="HelloWorld1.jar" includes="*.class" basedir="bin"/>
</target>
</project>
Comments