Reference Guide

Table Of Contents
Under the application root folder (hm-root) create the application parent POM file using the
template from the HP VAN SDN Controller SDK. The following list shows the root pom.xml after
updating the template with Table 4.
Sample Application Root POM File:
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.hp.hm</groupId>
<artifactId>hm-root</artifactId>
<packaging>pom</packaging>
<version>1.0.0-SNAPSHOT</version>
<name>hm-root</name>
<description>Health Monitor SDN Application</description>
<modules>
<module>../hm-model</module>
<module>../hm-api</module>
<module>../hm-bl</module>
<module>../hm-rs</module>
<module>../hm-ui</module>
<module>../hm-app</module>
</modules>
<properties>
<hp-util.version>6.32.0</hp-util.version>
<sdn.version>2.3.2</sdn.version>
</properties>
<!-- Remaining content same as in template -->
...
</project>
Module POM File
The application module (Source code project) pom.xml file, for which a template can be found in
the HP VAN SDN Controller SDK, allows creating the Eclipse project and compiling the module.
This POM file is auto generated if the application generator tool introduced section Application
Generator (Automatic Workspace Creation) is used to generate the application.
Under each application module (or source code project) from Table 5 create the module POM file
using the template from the HP VAN SDN Controller SDK. The following list shows the hm-api
pom.xml after updating the template with Table 4. A pom.xml for each application module must
be created under the module’s folder.
140