Add missing <name> fields for pom.xml files
[neutron.git] / neutron-hostconfig / ovs / 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-ovs</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>neutron-spi</artifactId>
36       <version>${project.version}</version>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.neutron</groupId>
40       <artifactId>model</artifactId>
41       <version>${project.version}</version>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.ovsdb</groupId>
45       <artifactId>utils.mdsal-utils</artifactId>
46       <version>1.4.0-SNAPSHOT</version>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.ovsdb</groupId>
50       <artifactId>utils.southbound-utils</artifactId>
51       <version>1.4.0-SNAPSHOT</version>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.neutron</groupId>
55       <artifactId>neutron-hostconfig-utils</artifactId>
56       <version>${project.version}</version>
57     </dependency>
58     <dependency>
59       <groupId>org.osgi</groupId>
60       <artifactId>org.osgi.core</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.slf4j</groupId>
64       <artifactId>slf4j-api</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>config-api</artifactId>
69       <version>0.6.0-SNAPSHOT</version>
70     </dependency>
71   </dependencies>
72   <build>
73     <plugins>
74       <plugin>
75         <artifactId>maven-checkstyle-plugin</artifactId>
76         <configuration>
77           <excludes>org/opendaylight/yang/gen/**,**/yang/**</excludes>
78           <consoleOutput>true</consoleOutput>
79           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
80         </configuration>
81         <executions>
82           <execution>
83             <goals>
84               <goal>check</goal>
85             </goals>
86             <phase>process-sources</phase>
87           </execution>
88         </executions>
89       </plugin>
90       <plugin>
91         <groupId>org.apache.maven.plugins</groupId>
92         <artifactId>maven-compiler-plugin</artifactId>
93         <inherited>true</inherited>
94         <configuration>
95           <compilerArgs>
96             <arg>-Xlint:unchecked</arg>
97             <arg>-Xlint:deprecation</arg>
98           </compilerArgs>
99         </configuration>
100       </plugin>
101     </plugins>
102   </build>
103   <scm>
104     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
105     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
106     <tag>HEAD</tag>
107     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
108   </scm>
109   <distributionManagement>
110     <!-- Site deployment -->
111     <site>
112       <id>opendaylight-site</id>
113       <url>${nexus.site.url}/${project.artifactId}/</url>
114     </site>
115   </distributionManagement>
116
117   <!--
118       Maven Site Configuration
119
120       The following configuration is necessary for maven-site-plugin to
121       correctly identify the correct deployment path for OpenDaylight Maven
122       sites.
123   -->
124   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
125 </project>