Browse CVS Repository
Contents of /pal/yahoosearch/maven.xml
Parent Directory
| Revision Log
| Revision Graph
Revision 1.1 -
( show annotations)
( download)
( as text)
Mon Dec 26 23:36:45 2005 UTC
(18 years, 3 months ago)
by shinsuke
Branch point for: shinsuke, MAIN
File MIME type: application/xml
Initial revision
| 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 |
|
| 7 |
|
| 8 |
<!-- ================================================================ --> |
| 9 |
<!-- Hot Deploy for mundane everyday development under Catalina --> |
| 10 |
<!-- ================================================================ --> |
| 11 |
<goal name="hotdeploy"> |
| 12 |
<echo message="Hot Deploying ${org.apache.jetspeed.portlet.app.name} to ${org.apache.jetspeed.deploy.war.dir}"/> |
| 13 |
<copy todir="${org.apache.jetspeed.deploy.war.dir}/${org.apache.jetspeed.portlet.app.name}/WEB-INF/classes"> |
| 14 |
<fileset dir="${maven.build.dir}/classes"> |
| 15 |
</fileset> |
| 16 |
</copy> |
| 17 |
<copy todir="${org.apache.jetspeed.deploy.war.dir}/${org.apache.jetspeed.portlet.app.name}/"> |
| 18 |
<fileset dir="./src/webapp"/> |
| 19 |
</copy> |
| 20 |
</goal> |
| 21 |
|
| 22 |
<preGoal name="hotdeploy"> |
| 23 |
<attainGoal name= "java:compile"/> |
| 24 |
</preGoal> |
| 25 |
|
| 26 |
</project> |
|