blob: 79d965a80bf2db4597fb56090ab22ad454feeda1 [file] [log] [blame]
Kotagiri, Ramprasad (rp5662)f4231f32019-03-21 17:37:42 -04001<?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>
Timoney, Dan (dt5972)d637dfd2019-04-03 21:06:43 -070020
21 <properties>
22 <enforcer.skip>true</enforcer.skip>
23 </properties>
Kotagiri, Ramprasad (rp5662)f4231f32019-03-21 17:37:42 -040024
25 <modules>
26 <module>ccsdk-app-common</module>
27 <module>ccsdk-app-overlay</module>
28 <module>ccsdk-app-os</module>
29 </modules>
30 <distributionManagement>
31 <repository>
32 <id>ecomp-releases</id>
33 <url>${onap.nexus.url}/content/repositories/releases</url>
34 </repository>
35 <snapshotRepository>
36 <id>ecomp-snapshots</id>
37 <url>${onap.nexus.url}/content/repositories/snapshots</url>
38 </snapshotRepository>
39 </distributionManagement>
40
41 <build>
42 <plugins>
43 <plugin>
44 <groupId>org.apache.maven.plugins</groupId>
45 <artifactId>maven-deploy-plugin</artifactId>
46 <version>2.8</version>
47 <configuration>
48 <skip>true</skip>
49 </configuration>
50 </plugin>
51 </plugins>
52 </build>
53
54</project>