Kotagiri, Ramprasad (rp5662) | f4231f3 | 2019-03-21 17:37:42 -0400 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 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> |
| 5 | |
| 6 | <!-- Add oparent parent --> |
| 7 | |
| 8 | <parent> |
| 9 | <groupId>org.onap.oparent</groupId> |
| 10 | <artifactId>oparent</artifactId> |
| 11 | <version>1.2.3</version> |
| 12 | </parent> |
| 13 | |
| 14 | <!-- Maven parent project for convenience of building and cleaning --> |
| 15 | <groupId>org.onap.ccsdk.dashboard</groupId> |
| 16 | <artifactId>ccsdk-app-parent</artifactId> |
| 17 | <version>1.1.0-SNAPSHOT</version> |
| 18 | <packaging>pom</packaging> |
| 19 | <name>ccsdk-dashboard</name> |
| 20 | |
| 21 | <modules> |
| 22 | <module>ccsdk-app-common</module> |
| 23 | <module>ccsdk-app-overlay</module> |
| 24 | <module>ccsdk-app-os</module> |
| 25 | </modules> |
| 26 | <distributionManagement> |
| 27 | <repository> |
| 28 | <id>ecomp-releases</id> |
| 29 | <url>${onap.nexus.url}/content/repositories/releases</url> |
| 30 | </repository> |
| 31 | <snapshotRepository> |
| 32 | <id>ecomp-snapshots</id> |
| 33 | <url>${onap.nexus.url}/content/repositories/snapshots</url> |
| 34 | </snapshotRepository> |
| 35 | </distributionManagement> |
| 36 | |
| 37 | <build> |
| 38 | <plugins> |
| 39 | <plugin> |
| 40 | <groupId>org.apache.maven.plugins</groupId> |
| 41 | <artifactId>maven-deploy-plugin</artifactId> |
| 42 | <version>2.8</version> |
| 43 | <configuration> |
| 44 | <skip>true</skip> |
| 45 | </configuration> |
| 46 | </plugin> |
| 47 | </plugins> |
| 48 | </build> |
| 49 | |
| 50 | </project> |