Fixed CDR_IMAGE_VERSION in portal script
[demo.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <!--
4  ============LICENSE_START==========================================
5  ===================================================================
6  Copyright © 2017 AT&T Intellectual Property. All rights reserved.
7  ===================================================================
8  Licensed under the Apache License, Version 2.0 (the "License");
9  you may not use this file except in compliance with the License.
10  You may obtain a copy of the License at
11
12          http://www.apache.org/licenses/LICENSE-2.0
13
14  Unless required by applicable law or agreed to in writing, software
15  distributed under the License is distributed on an "AS IS" BASIS,
16  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  See the License for the specific language governing permissions and
18  limitations under the License.
19  ============LICENSE_END============================================
20
21  ECOMP and OpenECOMP are trademarks
22  and service marks of AT&T Intellectual Property.
23 -->
24
25 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
27
28   <groupId>org.onap.demo.vnf</groupId>
29   <artifactId>demo-aggregator</artifactId>
30   <version>1.2.2-SNAPSHOT</version>
31   <name>demo</name>
32   <packaging>pom</packaging>
33   <modelVersion>4.0.0</modelVersion>
34   <prerequisites>
35     <maven>3.1.1</maven>
36   </prerequisites>
37
38   <!--properties>
39      <nexusproxy>https://nexus.onap.org</nexusproxy>
40   </properties-->
41
42   <modules>
43     <module>boot</module>
44     <module>vnfs/honeycomb_plugin/sample_plugin/parent-pom</module>
45     <module>vnfs/vFW/pg_streams</module>
46     <module>vnfs/vLB/dns_streams</module>
47     <module>vnfs/vLB/DNSClient</module>
48     <module>vnfs/vLB/DNSManager</module>
49     <module>vnfs/VES</module>
50     <module>vnfs/VESreporting_vLB</module>
51     <module>vnfs/VESreporting_vFW</module>
52     <module>vnfs/VES5.0</module>
53     <module>vnfs/VESreporting_vLB5.0</module>
54     <module>vnfs/VESreporting_vFW5.0</module>
55     <module>vnfs/vCPE/kea-sdnc-notify-mod</module>
56     <!--module>vnfs/vLBMS/apis/vlb-business-vnf-onap-plugin</module>
57     <module>vnfs/vLBMS/apis/health-vnf-onap-plugin</module>
58     <module>vnfs/vLBMS/apis/vlb-vnf-onap-distribution</module-->
59   </modules>
60
61   <properties>
62     <sonar.skip>true</sonar.skip>
63   </properties>
64
65   <build>
66     <plugins>
67       <plugin>
68         <groupId>org.apache.maven.plugins</groupId>
69         <artifactId>maven-deploy-plugin</artifactId>
70         <version>2.8.1</version>
71         <configuration>
72           <skip>true</skip>
73         </configuration>
74       </plugin>
75       <plugin>
76         <groupId>org.apache.maven.plugins</groupId>
77         <artifactId>maven-install-plugin</artifactId>
78         <version>2.5.2</version>
79         <configuration>
80           <skip>true</skip>
81         </configuration>
82       </plugin>
83
84       <plugin>
85         <groupId>org.sonatype.plugins</groupId>
86         <artifactId>nexus-staging-maven-plugin</artifactId>
87         <version>1.6.7</version>
88         <extensions>true</extensions>
89         <configuration>
90           <nexusUrl>https://nexus.onap.org/</nexusUrl>
91           <stagingProfileId>176c31dfe190a</stagingProfileId>
92           <serverId>ecomp-staging</serverId>
93         </configuration>
94       </plugin>
95
96     </plugins>
97   </build>
98
99   <distributionManagement>
100     <repository>
101       <id>ecomp-releases</id>
102       <name>Demo Release Repository</name>
103       <url>https://nexus.onap.org/content/repositories/releases/</url>
104     </repository>
105     <snapshotRepository>
106       <id>ecomp-snapshots</id>
107       <name>Demo Snapshot Repository</name>
108       <url>https://nexus.onap.org/content/repositories/snapshots/</url>
109     </snapshotRepository>
110   </distributionManagement>
111
112 </project>