Christopher Lott (cl778h) | 9015d0d | 2017-08-17 14:52:44 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Christopher Lott (cl778h) | a6214cf | 2017-08-17 21:59:09 -0400 | [diff] [blame] | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Dan Timoney | 31dd076 | 2017-09-14 13:59:28 -0400 | [diff] [blame] | 3 | 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) | 9015d0d | 2017-08-17 14:52:44 -0400 | [diff] [blame] | 5 | |
Dan Timoney | 31dd076 | 2017-09-14 13:59:28 -0400 | [diff] [blame] | 6 | <!-- 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) | a6214cf | 2017-08-17 21:59:09 -0400 | [diff] [blame] | 18 | |
Dan Timoney | 31dd076 | 2017-09-14 13:59:28 -0400 | [diff] [blame] | 19 | <modules> |
| 20 | <module>oom-app-common</module> |
| 21 | <module>oom-app-overlay</module> |
| 22 | <module>oom-app-os</module> |
| 23 | </modules> |
Dan Timoney | 4937919 | 2017-09-26 03:42:27 -0400 | [diff] [blame] | 24 | <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) | a6214cf | 2017-08-17 21:59:09 -0400 | [diff] [blame] | 34 | |
Dan Timoney | 31dd076 | 2017-09-14 13:59:28 -0400 | [diff] [blame] | 35 | <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) | 9015d0d | 2017-08-17 14:52:44 -0400 | [diff] [blame] | 47 | |
| 48 | </project> |