Add missing <name> fields for pom.xml files
[ovsdb.git] / southbound / southbound-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
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 <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">
10
11   <parent>
12     <groupId>org.opendaylight.controller</groupId>
13     <artifactId>config-parent</artifactId>
14     <version>0.7.0-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.opendaylight.ovsdb</groupId>
20   <artifactId>southbound-impl</artifactId>
21   <version>1.5.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23   <!-- <name> formatting is used by autorelease to parse and notify projects on
24        build failure. Please do not modify this unless you have a good reason. -->
25   <name>ODL :: ovsdb :: ${project.artifactId}</name>
26   <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>
27   <licenses>
28     <license>
29       <name>Eclipse Public License v1.0</name>
30       <url>http://www.eclipse.org/legal/epl-v10.html</url>
31     </license>
32   </licenses>
33   <developers>
34     <developer>
35       <name>Sam Hague</name>
36       <email>shague@gmail.com</email>
37       <url>https://github.com/shague</url>
38     </developer>
39   </developers>
40   <scm>
41     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
42     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
43     <tag>HEAD</tag>
44     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
45   </scm>
46
47   <properties>
48     <sonar.jacoco.itReportPath>../southbound-it/target/jacoco-it.exec</sonar.jacoco.itReportPath>
49   </properties>
50
51   <dependencies>
52     <!-- project specific dependencies -->
53     <dependency>
54       <groupId>${project.groupId}</groupId>
55       <artifactId>southbound-api</artifactId>
56       <version>${project.version}</version>
57     </dependency>
58     <dependency>
59       <groupId>${project.groupId}</groupId>
60       <artifactId>library</artifactId>
61       <version>${project.version}</version>
62     </dependency>
63     <dependency>
64       <groupId>${project.groupId}</groupId>
65       <artifactId>schema.openvswitch</artifactId>
66       <version>${project.version}</version>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.ovsdb</groupId>
70       <artifactId>utils.yang-utils</artifactId>
71       <version>${project.version}</version>
72     </dependency>
73     <dependency>
74       <groupId>com.google.guava</groupId>
75       <artifactId>guava</artifactId>
76     </dependency>
77     <!-- external dependencies -->
78     <dependency>
79       <groupId>org.codehaus.sonar-plugins.java</groupId>
80       <artifactId>sonar-jacoco-listeners</artifactId>
81       <version>${sonar-jacoco-listeners.version}</version>
82       <scope>test</scope>
83     </dependency>
84     <dependency>
85       <groupId>org.slf4j</groupId>
86       <artifactId>slf4j-simple</artifactId>
87       <scope>test</scope>
88     </dependency>
89     <!-- testing dependencies -->
90     <dependency>
91       <groupId>junit</groupId>
92       <artifactId>junit</artifactId>
93       <scope>test</scope>
94     </dependency>
95     <dependency>
96       <groupId>org.powermock</groupId>
97       <artifactId>powermock-api-mockito</artifactId>
98       <scope>test</scope>
99     </dependency>
100     <dependency>
101       <groupId>org.powermock</groupId>
102       <artifactId>powermock-module-junit4</artifactId>
103       <scope>test</scope>
104     </dependency>
105     <dependency>
106       <groupId>org.opendaylight.controller</groupId>
107       <artifactId>sal-binding-broker-impl</artifactId>
108       <type>test-jar</type>
109       <scope>test</scope>
110     </dependency>
111     <dependency>
112       <groupId>org.opendaylight.ovsdb</groupId>
113       <artifactId>utils.southbound-utils</artifactId>
114       <version>${project.version}</version>
115       <scope>test</scope>
116     </dependency>
117   </dependencies>
118   <build>
119     <plugins>
120       <plugin>
121         <groupId>org.apache.felix</groupId>
122         <artifactId>maven-bundle-plugin</artifactId>
123         <configuration>
124           <instructions>
125             <Export-Package>
126               org.opendaylight.ovsdb.southbound,
127               org.opendaylight.ovsdb.southbound.*,
128               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.southbound.impl.rev141210.*</Export-Package>
129           </instructions>
130         </configuration>
131       </plugin>
132       <plugin>
133         <groupId>org.apache.maven.plugins</groupId>
134         <artifactId>maven-checkstyle-plugin</artifactId>
135         <configuration>
136           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
137         </configuration>
138       </plugin>
139       <plugin>
140         <groupId>org.apache.maven.plugins</groupId>
141         <artifactId>maven-surefire-plugin</artifactId>
142         <configuration>
143           <properties>
144             <property>
145               <name>listener</name>
146               <value>org.sonar.java.jacoco.JUnitListener</value>
147             </property>
148           </properties>
149         </configuration>
150       </plugin>
151       <plugin>
152         <groupId>org.codehaus.mojo</groupId>
153         <artifactId>build-helper-maven-plugin</artifactId>
154         <executions>
155           <execution>
156             <id>attach-artifacts</id>
157             <goals>
158               <goal>attach-artifact</goal>
159             </goals>
160             <phase>package</phase>
161             <configuration>
162               <artifacts>
163                 <artifact>
164                   <file>${project.build.directory}/classes/initial/southbound.cfg</file>
165                   <type>cfg</type>
166                   <classifier>config</classifier>
167                 </artifact>
168               </artifacts>
169             </configuration>
170           </execution>
171         </executions>
172       </plugin>
173     </plugins>
174   </build>
175
176   <!--
177       Maven Site Configuration
178
179       The following configuration is necessary for maven-site-plugin to
180       correctly identify the correct deployment path for OpenDaylight Maven
181       sites.
182   -->
183   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
184
185   <distributionManagement>
186     <site>
187       <id>opendaylight-site</id>
188       <url>${nexus.site.url}/${project.artifactId}/</url>
189     </site>
190   </distributionManagement>
191 </project>