Merge "Bug 5876 - OVSDB library: Retry when SSL handshake doesn't begin yet"
[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.5.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.ovsdb</groupId>
22   <artifactId>utils.servicehelper</artifactId>
23   <version>1.3.0-SNAPSHOT</version>
24   <packaging>bundle</packaging>
25   <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>
26   <licenses>
27     <license>
28       <name>Eclipse Public License v1.0</name>
29       <url>http://www.eclipse.org/legal/epl-v10.html</url>
30     </license>
31   </licenses>
32   <developers>
33     <developer>
34       <name>Sam Hague</name>
35       <email>shague@gmail.com</email>
36       <url>https://github.com/shague</url>
37     </developer>
38   </developers>
39   <scm>
40     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
41     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
42     <tag>HEAD</tag>
43     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
44   </scm>
45
46   <dependencies>
47     <dependency>
48       <groupId>junit</groupId>
49       <artifactId>junit</artifactId>
50       <scope>test</scope>
51     </dependency>
52     <dependency>
53       <groupId>org.osgi</groupId>
54       <artifactId>org.osgi.core</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.slf4j</groupId>
58       <artifactId>slf4j-api</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.mockito</groupId>
62       <artifactId>mockito-core</artifactId>
63       <version>1.10.19</version>
64       <scope>test</scope>
65     </dependency>
66     <dependency>
67       <groupId>org.powermock</groupId>
68       <artifactId>powermock-api-mockito</artifactId>
69       <scope>test</scope>
70     </dependency>
71     <dependency>
72       <groupId>org.powermock</groupId>
73       <artifactId>powermock-core</artifactId>
74       <scope>test</scope>
75     </dependency>
76     <dependency>
77       <groupId>org.powermock</groupId>
78       <artifactId>powermock-module-junit4</artifactId>
79       <scope>test</scope>
80     </dependency>
81     <dependency>
82       <groupId>org.springframework.osgi</groupId>
83       <artifactId>spring-osgi-mock</artifactId>
84       <version>1.2.1</version>
85       <scope>test</scope>
86     </dependency>
87     <dependency>
88       <groupId>org.slf4j</groupId>
89       <artifactId>slf4j-simple</artifactId>
90       <scope>test</scope>
91     </dependency>
92   </dependencies>
93   <build>
94     <plugins>
95       <plugin>
96         <groupId>org.apache.felix</groupId>
97         <artifactId>maven-bundle-plugin</artifactId>
98         <extensions>true</extensions>
99         <configuration>
100           <instructions>
101             <Export-Package>
102               org.opendaylight.ovsdb.utils.servicehelper
103             </Export-Package>
104           </instructions>
105         </configuration>
106       </plugin>
107       <plugin>
108         <groupId>org.jacoco</groupId>
109         <artifactId>jacoco-maven-plugin</artifactId>
110         <executions>
111           <execution>
112             <id>default-instrument</id>
113             <goals>
114               <goal>instrument</goal>
115             </goals>
116           </execution>
117           <execution>
118             <id>default-restore-instrumented-classes</id>
119             <goals>
120               <goal>restore-instrumented-classes</goal>
121             </goals>
122           </execution>
123         </executions>
124       </plugin>
125     </plugins>
126   </build>
127
128   <!--
129       Maven Site Configuration
130
131       The following configuration is necessary for maven-site-plugin to
132       correctly identify the correct deployment path for OpenDaylight Maven
133       sites.
134   -->
135   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
136
137   <distributionManagement>
138     <site>
139       <id>opendaylight-site</id>
140       <url>${nexus.site.url}/${project.artifactId}/</url>
141     </site>
142   </distributionManagement>
143 </project>