Add missing <name> fields for pom.xml files
[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.controller</groupId>
8     <artifactId>config-parent</artifactId>
9     <version>0.6.0-SNAPSHOT</version>
10     <relativePath/>
11   </parent>
12
13   <groupId>org.opendaylight.neutron</groupId>
14   <artifactId>neutron-hostconfig</artifactId>
15   <version>0.8.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   </modules>
24   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
25   <build>
26     <plugins>
27       <plugin>
28         <groupId>org.apache.maven.plugins</groupId>
29         <artifactId>maven-deploy-plugin</artifactId>
30         <configuration>
31           <skip>true</skip>
32         </configuration>
33       </plugin>
34       <plugin>
35         <groupId>org.apache.maven.plugins</groupId>
36         <artifactId>maven-install-plugin</artifactId>
37         <configuration>
38           <skip>true</skip>
39         </configuration>
40       </plugin>
41     </plugins>
42   </build>
43
44   <!--
45       Maven Site Configuration
46       The following configuration is necessary for maven-site-plugin to
47       correctly identify the correct deployment path for OpenDaylight Maven
48       sites.
49   -->
50   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
51
52   <distributionManagement>
53     <site>
54       <id>opendaylight-site</id>
55       <url>${nexus.site.url}/${project.artifactId}/</url>
56     </site>
57   </distributionManagement>
58 </project>