blob: e25f0b8a911c05fb2b072e4e5d7991050cae9345 [file] [log] [blame]
Christopher Lott (cl778h)9015d0d2017-08-17 14:52:44 -04001<?xml version="1.0" encoding="UTF-8"?>
Christopher Lott (cl778h)a6214cf2017-08-17 21:59:09 -04002<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Dan Timoney31dd0762017-09-14 13:59:28 -04003 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
Christopher Lott (cl778h)9015d0d2017-08-17 14:52:44 -04005
Dan Timoney31dd0762017-09-14 13:59:28 -04006 <!-- Add oparent parent -->
7 <parent>
8 <groupId>org.onap.oparent</groupId>
9 <artifactId>oparent</artifactId>
10 <version>1.0.0-SNAPSHOT</version>
11 </parent>
12 <!-- Maven parent project for convenience of building and cleaning -->
13 <groupId>org.onap.oom.dashboard</groupId>
14 <artifactId>oom-app-parent</artifactId>
15 <version>0</version>
16 <packaging>pom</packaging>
17 <name>ccsdk-dashboard</name>
Christopher Lott (cl778h)a6214cf2017-08-17 21:59:09 -040018
Dan Timoney31dd0762017-09-14 13:59:28 -040019 <modules>
20 <module>oom-app-common</module>
21 <module>oom-app-overlay</module>
22 <module>oom-app-os</module>
23 </modules>
Christopher Lott (cl778h)a6214cf2017-08-17 21:59:09 -040024
Dan Timoney31dd0762017-09-14 13:59:28 -040025 <build>
26 <plugins>
27 <plugin>
28 <groupId>org.apache.maven.plugins</groupId>
29 <artifactId>maven-deploy-plugin</artifactId>
30 <version>2.8</version>
31 <configuration>
32 <skip>true</skip>
33 </configuration>
34 </plugin>
35 </plugins>
36 </build>
Christopher Lott (cl778h)9015d0d2017-08-17 14:52:44 -040037
38</project>