Insert the correct Nexus URL in pom files
[demo.git] / vnfs / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2015 Cisco and/or its affiliates.
4  Licensed under the Apache License, Version 2.0 (the "License");
5  you may not use this file except in compliance with the License.
6  You may obtain a copy of the License at:
7
8      http://www.apache.org/licenses/LICENSE-2.0
9
10  Unless required by applicable law or agreed to in writing, software
11  distributed under the License is distributed on an "AS IS" BASIS,
12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  See the License for the specific language governing permissions and
14  limitations under the License.
15 --><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
16
17 <!--  <parent>
18     <groupId>org.opendaylight.odlparent</groupId>
19     <artifactId>odlparent</artifactId>
20     <version>1.6.2-Beryllium-SR2</version>
21   </parent>
22 -->
23   <groupId>org.openecomp.demo.vnf</groupId>
24   <artifactId>demo-aggregator</artifactId>
25   <version>1.0.0</version>
26   <name>demo-aggregator</name>
27   <packaging>pom</packaging>
28   <modelVersion>4.0.0</modelVersion>
29   <prerequisites>
30     <maven>3.1.1</maven>
31   </prerequisites>
32
33   <modules>
34   <module>honeycomb_plugin/sample_plugin</module>
35     <module>vFW/pg_streams</module>
36     <module>vLB/dns_streams</module>
37     <module>VES</module>
38     <module>VESreporting_vLB</module>
39     <module>VESreporting_vFW</module>
40   </modules>
41
42   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
43   <build>
44     <plugins>
45       <plugin>
46         <groupId>org.apache.maven.plugins</groupId>
47         <artifactId>maven-deploy-plugin</artifactId>
48         <configuration>
49           <skip>true</skip>
50         </configuration>
51       </plugin>
52       <plugin>
53         <groupId>org.apache.maven.plugins</groupId>
54         <artifactId>maven-install-plugin</artifactId>
55         <configuration>
56           <skip>true</skip>
57         </configuration>
58       </plugin>
59     </plugins>
60   </build>
61
62   <distributionManagement>
63     <repository>
64       <id>ecomp-releases</id>
65       <name>Demo Release Repository</name>
66       <url>${nexusproxy}/content/repositories/releases/</url>
67     </repository>
68     <snapshotRepository>
69       <id>ecomp-snapshots</id>
70       <name>Demo Snapshot Repository</name>
71       <url>${nexusproxy}/content/repositories/snapshots/</url>
72     </snapshotRepository>
73
74 </project>