Merge "Bug 4160 - null pointer exception in getDHCPServerPort()"
[ovsdb.git] / library / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2014 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.ovsdb</groupId>
16     <artifactId>commons</artifactId>
17     <version>1.4.0-SNAPSHOT</version>
18     <relativePath>../commons/parent</relativePath>
19   </parent>
20
21   <artifactId>library</artifactId>
22   <version>1.2.0-SNAPSHOT</version>
23   <packaging>bundle</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   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
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>org.apache.felix</groupId>
49       <artifactId>org.apache.felix.dependencymanager</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>com.fasterxml.jackson.core</groupId>
53       <artifactId>jackson-annotations</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>com.fasterxml.jackson.core</groupId>
57       <artifactId>jackson-core</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>com.fasterxml.jackson.core</groupId>
61       <artifactId>jackson-databind</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.osgi</groupId>
65       <artifactId>org.osgi.core</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>com.google.guava</groupId>
69       <artifactId>guava</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>io.netty</groupId>
73       <artifactId>netty-all</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>junit</groupId>
77       <artifactId>junit</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.slf4j</groupId>
81       <artifactId>slf4j-api</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>org.slf4j</groupId>
85       <artifactId>slf4j-simple</artifactId>
86       <scope>test</scope>
87     </dependency>
88   </dependencies>
89
90   <build>
91     <testResources>
92       <testResource>
93         <filtering>true</filtering>
94         <directory>src/test/resources</directory>
95       </testResource>
96     </testResources>
97     <plugins>
98       <plugin>
99         <groupId>org.apache.felix</groupId>
100         <artifactId>maven-bundle-plugin</artifactId>
101         <version>2.4.0</version>
102         <extensions>true</extensions>
103         <configuration>
104           <instructions>
105             <Import-Package>org.apache.commons.lang3.builder,
106                 org.apache.commons.lang3.tuple,
107                 org.apache.felix.dm,
108                 org.slf4j,
109                 org.eclipse.osgi.framework.console,
110                 org.osgi.framework,
111                 javax.net.ssl,
112                 *</Import-Package>
113             <Embed-Transitive>true</Embed-Transitive>
114             <Bundle-Activator>org.opendaylight.ovsdb.lib.osgi.Activator</Bundle-Activator>
115             <Export-Package>
116                 org.opendaylight.ovsdb.lib,
117                 org.opendaylight.ovsdb.lib.impl,
118                 org.opendaylight.ovsdb.lib.error,
119                 org.opendaylight.ovsdb.lib.jsonrpc,
120                 org.opendaylight.ovsdb.lib.notation,
121                 org.opendaylight.ovsdb.lib.operations,
122                 org.opendaylight.ovsdb.lib.message,
123                 org.opendaylight.ovsdb.lib.schema,
124                 org.opendaylight.ovsdb.lib.schema.typed</Export-Package>
125           </instructions>
126           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
127         </configuration>
128       </plugin>
129       <plugin>
130         <groupId>org.apache.maven.plugins</groupId>
131         <artifactId>maven-checkstyle-plugin</artifactId>
132       </plugin>
133       <plugin>
134         <groupId>org.apache.maven.plugins</groupId>
135         <artifactId>maven-failsafe-plugin</artifactId>
136       </plugin>
137       <plugin>
138         <groupId>org.apache.maven.plugins</groupId>
139         <artifactId>maven-surefire-plugin</artifactId>
140       </plugin>
141       <plugin>
142         <groupId>org.jacoco</groupId>
143         <artifactId>jacoco-maven-plugin</artifactId>
144       </plugin>
145     </plugins>
146   </build>
147 </project>