I can see you are working on the source distribution.

It depends on what changes you make.  If you have modified the jetspeed source
files, use 'maven jar' and copy the generated jar to your exploded web app. 
That way, there is no need to reinstall everything.

I don't see any target that does the undeployment.  So if you prefer, you can
add a new target in build.xml:

<property name="deploy.dir" value="your-webapp-dir/jetspeed"/>
<target name="undeploy">
   <delete quiet="true" dir="${deploy.dir}"/>
</target>

This is not advisable though...you might accidentally delete your config files,
etc...So idea is, it's best to redeploy only those that need updating.

Quoting nick the mytilian <[EMAIL PROTECTED]>:

> 
> Hello all!
> 
> I am working with jetspeed-1.5, redhat 9, jakarta tomcat 4.1.29
> 
> Every time i install jetspeed, i must first delete the whole 
> tomcat_home/webapps/jetspeed directory, and then (after i install 
> jetspeed) i copy the generated jetspeed.war file under tomcat_home/webapps
> 
> Is there any more quick way? I do not want to delete the tomcat_home/webapps
> folder every time!
> 
> I install jetspeed with the command:
> maven -Dmaven.test.skip=true dist:install
> 
> Thank you in advance!
> Nikos.
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 




----------------------------------------------------------------
This message was sent using IMP, the Internet Messaging Program.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to