Posted By:
zohar_etzioni
Posted On:
Friday, October 3, 2008 11:05 AM
Hi, I'm trying to create a distribution war file of some web application. The instructions say that I need to modify the ant.properties to appropriate values. I'm not sure what that means though. The file is: # ${workspace} must be set src=src test=test resource=resource build=build build.test=build.test apidocs=apidocs lib=${workspace}/lib dist=dist jarnamebase=${ant.project.name} tomcat.host=localhost tomcat.port=8080 tomcat.manager.url=http://${tomcat.host}:${tomcat.port}/manager tomcat.manager.username=administrator tomcat.manager.password=administratorpassword # ${axis.proj}, ${axis.path}, ${axis.lib} must be
More>>
Hi,
I'm trying to create a distribution war file of some web application. The instructions say that I need to modify the ant.properties to appropriate values. I'm not sure what that means though. The file is:
# ${workspace} must be set
src=src
test=test
resource=resource
build=build
build.test=build.test
apidocs=apidocs
lib=${workspace}/lib
dist=dist
jarnamebase=${ant.project.name}
tomcat.host=localhost
tomcat.port=8080
tomcat.manager.url=http://${tomcat.host}:${tomcat.port}/manager
tomcat.manager.username=administrator
tomcat.manager.password=administratorpassword
# ${axis.proj}, ${axis.path}, ${axis.lib} must be set
axis.home=${workspace}/${axis.proj}/webapps/${axis.path}
axis.webinf=${axis.home}/WEB-INF
# ${webapp.proj}, ${webapp.path} must be set
webapp.home=${workspace}/${webapp.proj}/webapps/${webapp.path}
webapp.webinf=${webapp.home}/WEB-INF
so it figures that workspace, as well as axis.* and webapp.* must be set, but set to what? what are these parameters and where should they come from?
<<Less