Merge "BUG-1173: do not mention guava.version"
[ovsdb.git] / library / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.ovsdb</groupId>
6     <artifactId>commons</artifactId>
7     <version>1.3.0-SNAPSHOT</version>
8     <relativePath>../commons/parent</relativePath>
9   </parent>
10
11   <artifactId>library</artifactId>
12   <version>1.1.0-SNAPSHOT</version>
13   <name>OVSDB Library</name>
14   <packaging>bundle</packaging>
15
16   <dependencies>
17     <dependency>
18       <groupId>org.apache.felix</groupId>
19       <artifactId>org.apache.felix.dependencymanager</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>com.fasterxml.jackson.core</groupId>
23       <artifactId>jackson-annotations</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>com.fasterxml.jackson.core</groupId>
27       <artifactId>jackson-core</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>com.fasterxml.jackson.core</groupId>
31       <artifactId>jackson-databind</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.osgi</groupId>
35       <artifactId>org.osgi.core</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>com.google.guava</groupId>
39       <artifactId>guava</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>io.netty</groupId>
43       <artifactId>netty-all</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>junit</groupId>
47       <artifactId>junit</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.slf4j</groupId>
51       <artifactId>slf4j-api</artifactId>
52     </dependency>
53   </dependencies>
54
55   <build>
56     <testResources>
57       <testResource>
58         <filtering>true</filtering>
59         <directory>src/test/resources</directory>
60       </testResource>
61     </testResources>
62     <plugins>
63       <plugin>
64         <groupId>org.apache.felix</groupId>
65         <artifactId>maven-bundle-plugin</artifactId>
66         <version>2.4.0</version>
67         <extensions>true</extensions>
68         <configuration>
69           <instructions>
70             <Import-Package>org.apache.commons.lang3.builder,
71                 org.apache.commons.lang3.tuple,
72                 org.apache.felix.dm,
73                 org.slf4j,
74                 org.eclipse.osgi.framework.console,
75                 org.osgi.framework,
76                 javax.net.ssl,
77                 *</Import-Package>
78             <Embed-Transitive>true</Embed-Transitive>
79             <Bundle-Activator>org.opendaylight.ovsdb.lib.osgi.Activator</Bundle-Activator>
80             <Export-Package>
81                 org.opendaylight.ovsdb.lib,
82                 org.opendaylight.ovsdb.lib.impl,
83                 org.opendaylight.ovsdb.lib.error,
84                 org.opendaylight.ovsdb.lib.jsonrpc,
85                 org.opendaylight.ovsdb.lib.notation,
86                 org.opendaylight.ovsdb.lib.operations,
87                 org.opendaylight.ovsdb.lib.message,
88                 org.opendaylight.ovsdb.lib.schema,
89                 org.opendaylight.ovsdb.lib.schema.typed</Export-Package>
90           </instructions>
91           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
92         </configuration>
93       </plugin>
94       <plugin>
95         <groupId>org.apache.maven.plugins</groupId>
96         <artifactId>maven-checkstyle-plugin</artifactId>
97       </plugin>
98       <plugin>
99         <groupId>org.apache.maven.plugins</groupId>
100         <artifactId>maven-failsafe-plugin</artifactId>
101       </plugin>
102       <plugin>
103         <groupId>org.apache.maven.plugins</groupId>
104         <artifactId>maven-surefire-plugin</artifactId>
105       </plugin>
106       <plugin>
107         <groupId>org.jacoco</groupId>
108         <artifactId>jacoco-maven-plugin</artifactId>
109       </plugin>
110     </plugins>
111   </build>
112   <scm>
113     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
114     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
115     <tag>HEAD</tag>
116     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
117   </scm>
118 </project>