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