taylor 2003/08/07 12:47:16
Added: applications/demo maven.xml
Log:
added hotdeploy target for development and deploying JSPs and such
a lot quicker than pam.deploy everytime you make a change during development
Revision Changes Path
1.1 jakarta-jetspeed-2/applications/demo/maven.xml
Index: maven.xml
===================================================================
<project default="java:jar"
xmlns:j="jelly:core"
xmlns:define="jelly:define"
xmlns:reactor="reactor">
<!-- ================================================================ -->
<!-- Hot Deploy for mundane everyday development under Catalina -->
<!-- ================================================================ -->
<goal name="hotdeploy">
<echo message="Hot Deploying ${portlet.app.name} to ${deploy.war.dir}"/>
<copy todir="${deploy.war.dir}/${portlet.app.name}/WEB-INF/classes">
<fileset dir="${maven.build.dir}/classes">
</fileset>
</copy>
<copy todir="${deploy.war.dir}/${portlet.app.name}/">
<fileset dir="${webapp.dir}">
</fileset>
</copy>
</goal>
<preGoal name="hotdeploy">
<attainGoal name= "java:compile"/>
</preGoal>
</project>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]