1 / 5

ANT Introduction

ANT Introduction. Abhishek Dey Das | Sudhanshu Iyer. abhis.ws. |. siyer.info. Project 4. You were beaten to the market by a rival company that created a similar calculator to the one you have created 

Download Presentation

ANT Introduction

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. ANT Introduction AbhishekDey Das | Sudhanshu Iyer abhis.ws | siyer.info

  2. Project 4 • You were beaten to the market by a rival company that created a similar calculator to the one you have created  • You realize that they are missing a valuable functionality. The aim of this project is to introduce the missing functionality in the fastest and most efficient way possible. Make a web portal for your application and deploy it to your local Tomact container! Ask for help if you need it!

  3. Ant Targets • What is an Ant target • Syntax for writing targets • build.xml

  4. build.xml <projectname="RudimentaryLogger"default="dist"basedir="."> <targetname="prepare"> <mkdirdir="build/classes"/> <mkdirdir="dist"/> </target> <targetname="compile"depends="prepare"> <javacsrcdir="src"destdir="build/classes"target="1.6"source="1.6"debug="true"/> </target> <targetname="dist"depends="compile"> <jarjarfile="dist/logger.jar"basedir="build/classes"/> </target> </project>

  5. Live examples!

More Related