e65b4dc87eb0d2f453382227c85a67c81b5c050d
[netvirt.git] / vpnservice / statistics / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2017 HPE, Inc. and others. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
7 -->
8 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.odlparent</groupId>
14     <artifactId>odlparent-lite</artifactId>
15     <version>2.0.2</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.netvirt</groupId>
20   <artifactId>statistics-aggregator</artifactId>
21   <version>0.5.0-SNAPSHOT</version>
22   <name>ODL :: netvirt :: ${project.artifactId}</name>
23   <packaging>pom</packaging>
24
25   <scm>
26     <connection>scm:git:ssh://git.opendaylight.org:29418/statistics.git</connection>
27     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/statistics.git</developerConnection>
28     <tag>HEAD</tag>
29     <url>https://wiki.opendaylight.org/view/statistics:Main</url>
30   </scm>
31
32   <modules>
33     <module>api</module>
34     <module>impl</module>
35   </modules>
36
37   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
38   <build>
39     <plugins>
40       <plugin>
41         <groupId>org.apache.maven.plugins</groupId>
42         <artifactId>maven-deploy-plugin</artifactId>
43         <configuration>
44           <skip>true</skip>
45         </configuration>
46       </plugin>
47       <plugin>
48         <groupId>org.apache.maven.plugins</groupId>
49         <artifactId>maven-install-plugin</artifactId>
50         <configuration>
51           <skip>true</skip>
52         </configuration>
53       </plugin>
54     </plugins>
55   </build>
56
57   <!--
58       Maven Site Configuration
59
60       The following configuration is necessary for maven-site-plugin to
61       correctly identify the correct deployment path for OpenDaylight Maven
62       sites.
63   -->
64   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
65
66   <distributionManagement>
67     <site>
68       <id>opendaylight-site</id>
69       <url>${nexus.site.url}/${project.artifactId}/</url>
70     </site>
71   </distributionManagement>
72 </project>