The tomcat web server and servlet container are being used
A target takes the form:
Before you run Ant, you may have to change a few properties in the Storefront build.xml file to suit your development environment:
<property name="webserver.home"
value="c:/tomcat"/>
<property name="webserver.deploy"
value="${webserver.home}/webapps"/>
<property name="servlet.jar"
value="${webserver.home}/common/lib/servlet.jar"/>We could have used include elements to define the build.classpath property in far fewer lines; however, it's much clearer to explicitly list each JAR file used during the build process so that nothing that might prevent a successful build is added or omitted.
Dereferencing the property name using the Ant syntax ${property} allows the tasks to use the build.classpath property.
<target name="final-jar" depends="jars, wars">