Browse CVS Repository
Annotation of /pal/jsfhelloworld/maven.xml
Parent Directory
| Revision Log
| Revision Graph
Revision 1.1.1.1 -
( hide annotations)
( download)
( as text)
(vendor branch)
Sat Apr 15 23:19:28 2006 UTC
(17 years, 11 months ago)
by shinsuke
Branch: shinsuke, MAIN
CVS Tags: start, RELEASE-0_2, RELEASE-0_1, HEAD
Changes since 1.1: +0 -0 lines
File MIME type: application/xml
create jsfhelloworld cvs repo
| 1 |
shinsuke |
1.1 |
<?xml version="1.0" encoding="UTF-8"?> |
| 2 |
|
|
|
| 3 |
|
|
<project default="java:jar" |
| 4 |
|
|
xmlns:j="jelly:core" |
| 5 |
|
|
xmlns:define="jelly:define" |
| 6 |
|
|
xmlns:ant="jelly:ant" |
| 7 |
|
|
> |
| 8 |
|
|
|
| 9 |
|
|
|
| 10 |
|
|
<!-- ================================================================ --> |
| 11 |
|
|
<!-- Hot Deploy for mundane everyday development under Catalina --> |
| 12 |
|
|
<!-- ================================================================ --> |
| 13 |
|
|
<goal name="hotdeploy"> |
| 14 |
|
|
<echo message="Hot Deploying ${org.apache.jetspeed.portlet.app.name} to ${org.apache.jetspeed.deploy.war.dir}"/> |
| 15 |
|
|
<copy todir="${org.apache.jetspeed.deploy.war.dir}/${org.apache.jetspeed.portlet.app.name}/WEB-INF/classes"> |
| 16 |
|
|
<fileset dir="${maven.build.dir}/classes"> |
| 17 |
|
|
</fileset> |
| 18 |
|
|
</copy> |
| 19 |
|
|
<copy todir="${org.apache.jetspeed.deploy.war.dir}/${org.apache.jetspeed.portlet.app.name}/"> |
| 20 |
|
|
<fileset dir="./src/webapp"/> |
| 21 |
|
|
</copy> |
| 22 |
|
|
</goal> |
| 23 |
|
|
|
| 24 |
|
|
<preGoal name="hotdeploy"> |
| 25 |
|
|
<attainGoal name= "java:compile"/> |
| 26 |
|
|
</preGoal> |
| 27 |
|
|
|
| 28 |
|
|
</project> |
|