Development Environment ------------------------- C:\JavaProjects\MyProj\ directory has the following files/dirs build.xml (The XML build file) thirdparty/libs/jdbc1.jar thirdparty/libs/jdbc2.jar build/main/com/myco/Servlet.class src/metadata/myapp.xml src/html/myapp/index.html src/jsp/myapp/front.jsp src/graphics/images/gifs/small/logo.gif src/graphics/images/gifs/large/logo.gif
Deployment Environment ---------------------------------------- I wanna make a WAR file and copy it to C:\Tomcat5\webapps\ directory
Here goes my build.xml file ----------------------------- <?xml version="1.0"?> <project name="aag" default="compile" basedir=".">
I have some Queries: I hope the location of my build file is correct? 1. Won’t the mkdir task over-write my build directory? 2. I still have to explicitly give the name of my Tomcat Installation directory. Is there any other procedure?
With regard to 1, the easiest way to see this is to simply try it. Though, it's a pity this isn't mentioned in the mkdir task documentation.
With regard to 2, you do need to explicitly copy to your Tomcat directory. I can't think of any other procedure that could be used, can you?
(OK, maybe you could write a Tomcat-specific "deploy"-type task that uses the CATALINA_HOME environment variable, but that seems overly complex to me...)
-Tim [ July 31, 2005: Message edited by: Tim West ]
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35241
7
posted
0
There's another thread running right now which deals with the exact same question.