Add missing <name> fields for pom.xml files
[ovsdb.git] / southbound / southbound-artifacts / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2014, 2016 Cisco Systems, Inc. and others.  All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9
10 <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">
11
12   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <groupId>org.opendaylight.odlparent</groupId>
16     <artifactId>odlparent-lite</artifactId>
17     <version>1.9.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.ovsdb</groupId>
22   <artifactId>southbound-artifacts</artifactId>
23   <version>1.5.0-SNAPSHOT</version>
24   <packaging>pom</packaging>
25   <!-- <name> formatting is used by autorelease to parse and notify projects on
26        build failure. Please do not modify this unless you have a good reason. -->
27   <name>ODL :: ovsdb :: ${project.artifactId}</name>
28   <description>The OVSDB Plugin integration project is a project for OpenDaylight that will implement the Open vSwitch Database RFC 7047 management protocol allowing the Southbound configuration of vSwitches and a network virtualization implementation.</description>
29   <licenses>
30     <license>
31       <name>Eclipse Public License v1.0</name>
32       <url>http://www.eclipse.org/legal/epl-v10.html</url>
33     </license>
34   </licenses>
35   <developers>
36     <developer>
37       <name>Sam Hague</name>
38       <email>shague@gmail.com</email>
39       <url>https://github.com/shague</url>
40     </developer>
41   </developers>
42   <scm>
43     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
44     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
45     <tag>HEAD</tag>
46     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
47   </scm>
48
49   <dependencyManagement>
50     <dependencies>
51       <dependency>
52         <groupId>${project.groupId}</groupId>
53         <artifactId>southbound-api</artifactId>
54         <version>${project.version}</version>
55       </dependency>
56       <dependency>
57         <groupId>${project.groupId}</groupId>
58         <artifactId>southbound-impl</artifactId>
59         <version>${project.version}</version>
60       </dependency>
61       <dependency>
62         <groupId>${project.groupId}</groupId>
63         <artifactId>southbound-features</artifactId>
64         <version>${project.version}</version>
65         <classifier>features</classifier>
66         <type>xml</type>
67       </dependency>
68       <dependency>
69         <groupId>${project.groupId}</groupId>
70         <artifactId>southbound-features4</artifactId>
71         <version>${project.version}</version>
72         <classifier>features</classifier>
73         <type>xml</type>
74       </dependency>
75       <dependency>
76         <groupId>${project.groupId}</groupId>
77         <artifactId>odl-ovsdb-southbound-api</artifactId>
78         <version>${project.version}</version>
79         <classifier>features</classifier>
80         <type>xml</type>
81       </dependency>
82       <dependency>
83         <groupId>${project.groupId}</groupId>
84         <artifactId>odl-ovsdb-southbound-impl</artifactId>
85         <version>${project.version}</version>
86         <classifier>features</classifier>
87         <type>xml</type>
88       </dependency>
89       <dependency>
90         <groupId>${project.groupId}</groupId>
91         <artifactId>odl-ovsdb-southbound-impl-rest</artifactId>
92         <version>${project.version}</version>
93         <classifier>features</classifier>
94         <type>xml</type>
95       </dependency>
96       <dependency>
97         <groupId>${project.groupId}</groupId>
98         <artifactId>odl-ovsdb-southbound-impl-ui</artifactId>
99         <version>${project.version}</version>
100         <classifier>features</classifier>
101         <type>xml</type>
102       </dependency>
103     </dependencies>
104   </dependencyManagement>
105
106   <!--
107       Maven Site Configuration
108
109       The following configuration is necessary for maven-site-plugin to
110       correctly identify the correct deployment path for OpenDaylight Maven
111       sites.
112   -->
113   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
114
115   <distributionManagement>
116     <site>
117       <id>opendaylight-site</id>
118       <url>${nexus.site.url}/${project.artifactId}/</url>
119     </site>
120   </distributionManagement>
121 </project>