Add missing <name> fields for pom.xml files
[ovsdb.git] / utils / servicehelper / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2015, 2016 Red Hat, 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 <project xmlns="http://maven.apache.org/POM/4.0.0"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <groupId>org.opendaylight.controller</groupId>
16     <artifactId>config-parent</artifactId>
17     <version>0.7.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.ovsdb</groupId>
22   <artifactId>utils.servicehelper</artifactId>
23   <version>1.5.0-SNAPSHOT</version>
24   <packaging>bundle</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   <dependencies>
50     <dependency>
51       <groupId>junit</groupId>
52       <artifactId>junit</artifactId>
53       <scope>test</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.osgi</groupId>
57       <artifactId>org.osgi.core</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.slf4j</groupId>
61       <artifactId>slf4j-api</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.mockito</groupId>
65       <artifactId>mockito-core</artifactId>
66       <version>1.10.19</version>
67       <scope>test</scope>
68     </dependency>
69     <dependency>
70       <groupId>org.powermock</groupId>
71       <artifactId>powermock-api-mockito</artifactId>
72       <scope>test</scope>
73     </dependency>
74     <dependency>
75       <groupId>org.powermock</groupId>
76       <artifactId>powermock-core</artifactId>
77       <scope>test</scope>
78     </dependency>
79     <dependency>
80       <groupId>org.powermock</groupId>
81       <artifactId>powermock-module-junit4</artifactId>
82       <scope>test</scope>
83     </dependency>
84     <dependency>
85       <groupId>org.springframework.osgi</groupId>
86       <artifactId>spring-osgi-mock</artifactId>
87       <version>1.2.1</version>
88       <scope>test</scope>
89     </dependency>
90     <dependency>
91       <groupId>org.slf4j</groupId>
92       <artifactId>slf4j-simple</artifactId>
93       <scope>test</scope>
94     </dependency>
95   </dependencies>
96   <build>
97     <plugins>
98       <plugin>
99         <groupId>org.apache.felix</groupId>
100         <artifactId>maven-bundle-plugin</artifactId>
101         <extensions>true</extensions>
102         <configuration>
103           <instructions>
104             <Export-Package>
105               org.opendaylight.ovsdb.utils.servicehelper
106             </Export-Package>
107           </instructions>
108         </configuration>
109       </plugin>
110       <plugin>
111         <groupId>org.jacoco</groupId>
112         <artifactId>jacoco-maven-plugin</artifactId>
113         <executions>
114           <execution>
115             <id>default-instrument</id>
116             <goals>
117               <goal>instrument</goal>
118             </goals>
119           </execution>
120           <execution>
121             <id>default-restore-instrumented-classes</id>
122             <goals>
123               <goal>restore-instrumented-classes</goal>
124             </goals>
125           </execution>
126         </executions>
127       </plugin>
128     </plugins>
129   </build>
130
131   <!--
132       Maven Site Configuration
133
134       The following configuration is necessary for maven-site-plugin to
135       correctly identify the correct deployment path for OpenDaylight Maven
136       sites.
137   -->
138   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
139
140   <distributionManagement>
141     <site>
142       <id>opendaylight-site</id>
143       <url>${nexus.site.url}/${project.artifactId}/</url>
144     </site>
145   </distributionManagement>
146 </project>