Use netconf-3.0.5
[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" 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   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.ovsdb</groupId>
14     <artifactId>ovsdb-binding-parent</artifactId>
15     <version>1.15.0-SNAPSHOT</version>
16     <relativePath>../../commons/binding-parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.ovsdb</groupId>
20   <artifactId>utils.servicehelper</artifactId>
21   <version>1.15.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
27   <dependencies>
28     <dependency>
29       <groupId>org.osgi</groupId>
30       <artifactId>org.osgi.framework</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.slf4j</groupId>
34       <artifactId>slf4j-api</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.springframework.osgi</groupId>
38       <artifactId>spring-osgi-mock</artifactId>
39       <scope>test</scope>
40     </dependency>
41     <dependency>
42       <groupId>org.slf4j</groupId>
43       <artifactId>slf4j-simple</artifactId>
44       <scope>test</scope>
45     </dependency>
46   </dependencies>
47   <build>
48     <plugins>
49       <plugin>
50         <groupId>org.apache.felix</groupId>
51         <artifactId>maven-bundle-plugin</artifactId>
52         <extensions>true</extensions>
53         <configuration>
54           <instructions>
55             <Export-Package>
56               org.opendaylight.ovsdb.utils.servicehelper
57             </Export-Package>
58           </instructions>
59         </configuration>
60       </plugin>
61       <plugin>
62         <groupId>org.jacoco</groupId>
63         <artifactId>jacoco-maven-plugin</artifactId>
64         <executions>
65           <execution>
66             <id>default-instrument</id>
67             <goals>
68               <goal>instrument</goal>
69             </goals>
70           </execution>
71           <execution>
72             <id>default-restore-instrumented-classes</id>
73             <goals>
74               <goal>restore-instrumented-classes</goal>
75             </goals>
76           </execution>
77         </executions>
78       </plugin>
79     </plugins>
80   </build>
81
82   <!--
83       Maven Site Configuration
84
85       The following configuration is necessary for maven-site-plugin to
86       correctly identify the correct deployment path for OpenDaylight Maven
87       sites.
88   -->
89   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
90
91   <distributionManagement>
92     <site>
93       <id>opendaylight-site</id>
94       <url>${nexus.site.url}/${project.artifactId}/</url>
95     </site>
96   </distributionManagement>
97 </project>