Add missing <name> fields for pom.xml files
[neutron.git] / neutron-hostconfig / utils / 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>config-parent</artifactId>
7     <version>0.6.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.neutron</groupId>
12   <artifactId>neutron-hostconfig-utils</artifactId>
13   <version>0.8.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15   <!-- <name> formatting is used by autorelease to parse and notify projects on
16        build failure. Please do not modify this unless you have a good reason. -->
17   <name>ODL :: neutron :: ${project.artifactId}</name>
18   <properties>
19     <checkstyle.location>${project.parent.basedir}/src/main/resources</checkstyle.location>
20   </properties>
21   <dependencyManagement>
22     <dependencies>
23       <dependency>
24         <groupId>org.opendaylight.mdsal.model</groupId>
25         <artifactId>mdsal-model-artifacts</artifactId>
26         <version>0.10.0-SNAPSHOT</version>
27         <type>pom</type>
28         <scope>import</scope>
29       </dependency>
30     </dependencies>
31   </dependencyManagement>
32   <dependencies>
33     <dependency>
34       <groupId>org.opendaylight.neutron</groupId>
35       <artifactId>model</artifactId>
36       <version>${project.version}</version>
37     </dependency>
38     <dependency>
39       <groupId>org.osgi</groupId>
40       <artifactId>org.osgi.core</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.slf4j</groupId>
44       <artifactId>slf4j-api</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>config-api</artifactId>
49       <version>0.6.0-SNAPSHOT</version>
50     </dependency>
51   </dependencies>
52   <build>
53     <plugins>
54       <plugin>
55         <artifactId>maven-checkstyle-plugin</artifactId>
56         <configuration>
57           <excludes>org/opendaylight/yang/gen/**,**/yang/**</excludes>
58           <consoleOutput>true</consoleOutput>
59           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
60         </configuration>
61         <executions>
62           <execution>
63             <goals>
64               <goal>check</goal>
65             </goals>
66             <phase>process-sources</phase>
67           </execution>
68         </executions>
69       </plugin>
70       <plugin>
71         <groupId>org.apache.maven.plugins</groupId>
72         <artifactId>maven-compiler-plugin</artifactId>
73         <inherited>true</inherited>
74         <configuration>
75           <compilerArgs>
76             <arg>-Xlint:unchecked</arg>
77             <arg>-Xlint:deprecation</arg>
78           </compilerArgs>
79         </configuration>
80       </plugin>
81     </plugins>
82   </build>
83   <scm>
84     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
85     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
86     <tag>HEAD</tag>
87     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
88   </scm>
89   <distributionManagement>
90     <!-- Site deployment -->
91     <site>
92       <id>opendaylight-site</id>
93       <url>${nexus.site.url}/${project.artifactId}/</url>
94     </site>
95   </distributionManagement>
96
97   <!--
98       Maven Site Configuration
99
100       The following configuration is necessary for maven-site-plugin to
101       correctly identify the correct deployment path for OpenDaylight Maven
102       sites.
103   -->
104   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
105 </project>