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>
Recent Posts
See AllSo we've made it to the very end. Through all the ups and downs and we're all still standing. It was an amazing semester and I made some...
/** *Java Speech Grammar Format (JSGF) file *This file holds all the words that the program will recognize **/...
/* * Copyright 2013 Carnegie Mellon University. * Portions Copyright 2004 Sun Microsystems, Inc. * Portions Copyright 2004 Mitsubishi...
Comments