Bug 2192 - Part 3 - Make ovsdb library not depend on ovsdb.utils.config
[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>ch.qos.logback</groupId>
19       <artifactId>logback-classic</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>ch.qos.logback</groupId>
23       <artifactId>logback-core</artifactId>
24     </dependency>
25       <dependency>
26         <groupId>org.apache.felix</groupId>
27         <artifactId>org.apache.felix.dependencymanager</artifactId>
28       </dependency>
29     <dependency>
30       <groupId>com.fasterxml.jackson.core</groupId>
31       <artifactId>jackson-annotations</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>com.fasterxml.jackson.core</groupId>
35       <artifactId>jackson-core</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>com.fasterxml.jackson.core</groupId>
39       <artifactId>jackson-databind</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>com.google.code.gson</groupId>
43       <artifactId>gson</artifactId>
44       <scope>compile</scope>
45     </dependency>
46     <dependency>
47       <groupId>com.google.guava</groupId>
48       <artifactId>guava</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>commons-codec</groupId>
52       <artifactId>commons-codec</artifactId>
53       <optional>true</optional>
54     </dependency>
55     <dependency>
56       <groupId>commons-lang</groupId>
57       <artifactId>commons-lang</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>equinoxSDK381</groupId>
61       <artifactId>org.eclipse.osgi</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>io.netty</groupId>
65       <artifactId>netty-all</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>javax.portlet</groupId>
69       <artifactId>portlet-api</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>junit</groupId>
73       <artifactId>junit</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>org.slf4j</groupId>
77       <artifactId>slf4j-api</artifactId>
78     </dependency>
79   </dependencies>
80
81   <build>
82     <testResources>
83       <testResource>
84         <filtering>true</filtering>
85         <directory>src/test/resources</directory>
86       </testResource>
87     </testResources>
88     <plugins>
89       <plugin>
90         <groupId>org.apache.felix</groupId>
91         <artifactId>maven-bundle-plugin</artifactId>
92         <version>2.4.0</version>
93         <extensions>true</extensions>
94         <configuration>
95           <instructions>
96             <Import-Package>org.apache.commons.lang3.builder,
97                 org.apache.commons.lang3.tuple,
98                 org.apache.felix.dm,
99                 org.slf4j,
100                 org.eclipse.osgi.framework.console,
101                 org.osgi.framework,
102                 javax.net.ssl,
103                 *</Import-Package>
104             <Embed-Transitive>true</Embed-Transitive>
105             <Bundle-Activator>org.opendaylight.ovsdb.lib.Activator</Bundle-Activator>
106             <Export-Package>
107                 org.opendaylight.ovsdb.lib,
108                 org.opendaylight.ovsdb.lib.error,
109                 org.opendaylight.ovsdb.lib.jsonrpc,
110                 org.opendaylight.ovsdb.lib.notation,
111                 org.opendaylight.ovsdb.lib.operations,
112                 org.opendaylight.ovsdb.lib.message,
113                 org.opendaylight.ovsdb.lib.schema,
114                 org.opendaylight.ovsdb.lib.schema.typed</Export-Package>
115           </instructions>
116           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
117         </configuration>
118       </plugin>
119       <plugin>
120         <groupId>org.apache.maven.plugins</groupId>
121         <artifactId>maven-checkstyle-plugin</artifactId>
122       </plugin>
123       <plugin>
124         <groupId>org.apache.maven.plugins</groupId>
125         <artifactId>maven-failsafe-plugin</artifactId>
126       </plugin>
127       <plugin>
128         <groupId>org.apache.maven.plugins</groupId>
129         <artifactId>maven-surefire-plugin</artifactId>
130       </plugin>
131       <plugin>
132         <groupId>org.jacoco</groupId>
133         <artifactId>jacoco-maven-plugin</artifactId>
134       </plugin>
135     </plugins>
136   </build>
137   <scm>
138     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
139     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
140     <tag>HEAD</tag>
141     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
142   </scm>
143 </project>