50 likes | 135 Views
Implement a missing functionality in your calculator with a web portal. Learn about Ant targets, syntax, and examples for efficient deployment using Tomcat.
E N D
ANT Introduction AbhishekDey 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 • 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!
Ant Targets • What is an Ant target • Syntax for writing targets • build.xml
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>