Add missing <name> fields for pom.xml files
[ovsdb.git] / southbound / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2014, 2016 Cisco Systems and others. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
7 -->
8 <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">
9
10   <parent>
11     <groupId>org.opendaylight.odlparent</groupId>
12     <artifactId>odlparent-lite</artifactId>
13     <version>1.9.0-SNAPSHOT</version>
14     <relativePath/>
15   </parent>
16
17   <groupId>org.opendaylight.ovsdb</groupId>
18   <artifactId>southbound-aggregator</artifactId>
19   <version>1.5.0-SNAPSHOT</version>
20   <!-- <name> formatting is used by autorelease to parse and notify projects on
21        build failure. Please do not modify this unless you have a good reason. -->
22   <name>ODL :: ovsdb :: ${project.artifactId}</name>
23   <packaging>pom</packaging>
24   <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>
25   <licenses>
26     <license>
27       <name>Eclipse Public License v1.0</name>
28       <url>http://www.eclipse.org/legal/epl-v10.html</url>
29     </license>
30   </licenses>
31   <developers>
32     <developer>
33       <name>Sam Hague</name>
34       <email>shague@gmail.com</email>
35       <url>https://github.com/shague</url>
36     </developer>
37   </developers>
38   <scm>
39     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
40     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
41     <tag>HEAD</tag>
42     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
43   </scm>
44   <modelVersion>4.0.0</modelVersion>
45   <modules>
46     <module>southbound-api</module>
47     <module>southbound-impl</module>
48     <module>southbound-karaf</module>
49     <module>southbound-features</module>
50     <module>southbound-artifacts</module>
51     <module>southbound-it</module>
52   </modules>
53
54   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
55   <build>
56     <plugins>
57       <plugin>
58         <groupId>org.apache.maven.plugins</groupId>
59         <artifactId>maven-deploy-plugin</artifactId>
60         <configuration>
61           <skip>true</skip>
62         </configuration>
63       </plugin>
64       <plugin>
65         <groupId>org.apache.maven.plugins</groupId>
66         <artifactId>maven-install-plugin</artifactId>
67         <configuration>
68           <skip>true</skip>
69         </configuration>
70       </plugin>
71     </plugins>
72   </build>
73
74   <!--
75       Maven Site Configuration
76
77       The following configuration is necessary for maven-site-plugin to
78       correctly identify the correct deployment path for OpenDaylight Maven
79       sites.
80   -->
81   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
82
83   <distributionManagement>
84     <site>
85       <id>opendaylight-site</id>
86       <url>${nexus.site.url}/${project.artifactId}/</url>
87     </site>
88   </distributionManagement>
89 </project>