blob: d50abe3012241a8270bbe4d93e184b2f18a26f4a [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>
Dan Timoney49379192017-09-26 03:42:27 -040024 <distributionManagement>
25 <repository>
26 <id>ecomp-releases</id>
27 <url>${onap.nexus.url}/content/repositories/releases</url>
28 </repository>
29 <snapshotRepository>
30 <id>ecomp-snapshots</id>
31 <url>${onap.nexus.url}/content/repositories/snapshots</url>
32 </snapshotRepository>
33 </distributionManagement>
Christopher Lott (cl778h)a6214cf2017-08-17 21:59:09 -040034
Dan Timoney31dd0762017-09-14 13:59:28 -040035 <build>
36 <plugins>
37 <plugin>
38 <groupId>org.apache.maven.plugins</groupId>
39 <artifactId>maven-deploy-plugin</artifactId>
40 <version>2.8</version>
41 <configuration>
42 <skip>true</skip>
43 </configuration>
44 </plugin>
45 </plugins>
46 </build>
Christopher Lott (cl778h)9015d0d2017-08-17 14:52:44 -040047
48</project>