Bump odlparent 2.0.4 to 2.0.5
[neutron.git] / neutron-hostconfig / pom.xml
1 <?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
5   <modelVersion>4.0.0</modelVersion>
6   <parent>
7     <groupId>org.opendaylight.odlparent</groupId>
8     <artifactId>odlparent</artifactId>
9     <version>2.0.5</version>
10     <relativePath/>
11   </parent>
12
13   <groupId>org.opendaylight.neutron</groupId>
14   <artifactId>neutron-hostconfig</artifactId>
15   <version>0.10.0-SNAPSHOT</version>
16   <packaging>pom</packaging>
17   <!-- <name> formatting is used by autorelease to parse and notify projects on
18        build failure. Please do not modify this unless you have a good reason. -->
19   <name>ODL :: neutron :: ${project.artifactId}</name>
20   <modules>
21     <module>utils</module>
22     <module>ovs</module>
23     <module>vpp</module>
24   </modules>
25   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
26   <build>
27     <plugins>
28       <plugin>
29         <groupId>org.apache.maven.plugins</groupId>
30         <artifactId>maven-deploy-plugin</artifactId>
31         <configuration>
32           <skip>true</skip>
33         </configuration>
34       </plugin>
35       <plugin>
36         <groupId>org.apache.maven.plugins</groupId>
37         <artifactId>maven-install-plugin</artifactId>
38         <configuration>
39           <skip>true</skip>
40         </configuration>
41       </plugin>
42     </plugins>
43   </build>
44
45   <!--
46       Maven Site Configuration
47       The following configuration is necessary for maven-site-plugin to
48       correctly identify the correct deployment path for OpenDaylight Maven
49       sites.
50   -->
51   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
52
53   <distributionManagement>
54     <site>
55       <id>opendaylight-site</id>
56       <url>${nexus.site.url}/${project.artifactId}/</url>
57     </site>
58   </distributionManagement>
59 </project>