top of page

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


Featured Posts
Check back soon
Once posts are published, you’ll see them here.
Recent Posts
Archive
Search By Tags
Follow Us
  • Facebook Basic Square
  • Twitter Basic Square
  • Google+ Basic Square
  • Facebook Classic
  • Twitter Classic
  • Google Classic
  • RSS Classic

© 2023 by TOKYO DESIGN. Proudly created with Wix.com

bottom of page