fff3af24fec76284d97c88572a368606494be343
[netvirt.git] / vpnservice / dhcpservice / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Ericsson India Global Services Pvt Ltd. 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9
10   <parent>
11     <groupId>org.opendaylight.odlparent</groupId>
12     <artifactId>odlparent-lite</artifactId>
13     <version>2.0.2</version>
14     <relativePath/>
15   </parent>
16
17   <groupId>org.opendaylight.netvirt</groupId>
18   <artifactId>dhcpservice</artifactId>
19   <version>0.5.0-SNAPSHOT</version>
20   <name>ODL :: netvirt :: ${project.artifactId}</name>
21   <packaging>pom</packaging>
22   <modelVersion>4.0.0</modelVersion>
23   <modules>
24     <module>dhcpservice-api</module>
25     <module>dhcpservice-impl</module>
26   </modules>
27   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
28   <build>
29     <plugins>
30       <plugin>
31         <groupId>org.apache.maven.plugins</groupId>
32         <artifactId>maven-deploy-plugin</artifactId>
33         <configuration>
34           <skip>true</skip>
35         </configuration>
36       </plugin>
37       <plugin>
38         <groupId>org.apache.maven.plugins</groupId>
39         <artifactId>maven-install-plugin</artifactId>
40         <configuration>
41           <skip>true</skip>
42         </configuration>
43       </plugin>
44     </plugins>
45   </build>
46
47   <!--
48       Maven Site Configuration
49
50       The following configuration is necessary for maven-site-plugin to
51       correctly identify the correct deployment path for OpenDaylight Maven
52       sites.
53   -->
54   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
55
56   <distributionManagement>
57     <site>
58       <id>opendaylight-site</id>
59       <url>${nexus.site.url}/${project.artifactId}/</url>
60     </site>
61   </distributionManagement>
62 </project>