Reference Guide

Table Of Contents
http://www.eclipse.org/virgo/schema/plan
http://www.eclipse.org/virgo/schema/plan/eclipse-virgo-plan.xsd">
<artifact type="bundle" name="com.hp.hm.hm-model" version="1.0.0.SNAPSHOT "/>
<artifact type="bundle" name="com.hp.hm.hm-api" version="1.0.0.SNAPSHOT "/>
<artifact type="bundle" name="com.hp.hm.hm-bl" version="1.0.0.SNAPSHOT "/>
<artifact type="bundle" name="com.hp.hm.hm-rs" version="1.0.0.SNAPSHOT "/>
</plan>
Finally update the application packaging POM file hm-app/pom.xml (created in Application
Packaging POM File on page 142) with the extract shown in the following listing to include the .war
file into the application package.
Sample Application Packaging POM File Including REST Module:
...
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>package-app</id>
<phase>package</phase>
<configuration>
<tasks>
<mkdir dir="target/bundles" />
<copy todir="target/bundles/" flatten="true">
<fileset
dir="${user.home}/.m2/repository/com/hp/hm/">
<!Add an <include> node for api, bl, dao-
api, dao-model and dao -->
<include name="hm-
model/${project.version}/hm-model-${project.version}.jar"/>
<include name="hm-rs/${project.version}/hm-
rs-${project.version}.war"/>
</fileset>
<fileset dir="${basedir}" includes="hm.plan"/>
</copy>
<zip destfile="target/hm-${project.version}.zip"
basedir="target/bundles"/>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
176