Merge "Fetch managed node (bridge) details and augment to operational data store"
[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.3.0-SNAPSHOT</version>
18     <relativePath>../commons/parent</relativePath>
19   </parent>
20
21   <artifactId>library</artifactId>
22   <version>1.1.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24
25   <dependencies>
26     <dependency>
27       <groupId>org.apache.felix</groupId>
28       <artifactId>org.apache.felix.dependencymanager</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>com.fasterxml.jackson.core</groupId>
32       <artifactId>jackson-annotations</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>com.fasterxml.jackson.core</groupId>
36       <artifactId>jackson-core</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>com.fasterxml.jackson.core</groupId>
40       <artifactId>jackson-databind</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.osgi</groupId>
44       <artifactId>org.osgi.core</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>com.google.guava</groupId>
48       <artifactId>guava</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>io.netty</groupId>
52       <artifactId>netty-all</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>junit</groupId>
56       <artifactId>junit</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.slf4j</groupId>
60       <artifactId>slf4j-api</artifactId>
61     </dependency>
62   </dependencies>
63
64   <build>
65     <testResources>
66       <testResource>
67         <filtering>true</filtering>
68         <directory>src/test/resources</directory>
69       </testResource>
70     </testResources>
71     <plugins>
72       <plugin>
73         <groupId>org.apache.felix</groupId>
74         <artifactId>maven-bundle-plugin</artifactId>
75         <version>2.4.0</version>
76         <extensions>true</extensions>
77         <configuration>
78           <instructions>
79             <Import-Package>org.apache.commons.lang3.builder,
80                 org.apache.commons.lang3.tuple,
81                 org.apache.felix.dm,
82                 org.slf4j,
83                 org.eclipse.osgi.framework.console,
84                 org.osgi.framework,
85                 javax.net.ssl,
86                 *</Import-Package>
87             <Embed-Transitive>true</Embed-Transitive>
88             <Bundle-Activator>org.opendaylight.ovsdb.lib.osgi.Activator</Bundle-Activator>
89             <Export-Package>
90                 org.opendaylight.ovsdb.lib,
91                 org.opendaylight.ovsdb.lib.impl,
92                 org.opendaylight.ovsdb.lib.error,
93                 org.opendaylight.ovsdb.lib.jsonrpc,
94                 org.opendaylight.ovsdb.lib.notation,
95                 org.opendaylight.ovsdb.lib.operations,
96                 org.opendaylight.ovsdb.lib.message,
97                 org.opendaylight.ovsdb.lib.schema,
98                 org.opendaylight.ovsdb.lib.schema.typed</Export-Package>
99           </instructions>
100           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
101         </configuration>
102       </plugin>
103       <plugin>
104         <groupId>org.apache.maven.plugins</groupId>
105         <artifactId>maven-checkstyle-plugin</artifactId>
106       </plugin>
107       <plugin>
108         <groupId>org.apache.maven.plugins</groupId>
109         <artifactId>maven-failsafe-plugin</artifactId>
110       </plugin>
111       <plugin>
112         <groupId>org.apache.maven.plugins</groupId>
113         <artifactId>maven-surefire-plugin</artifactId>
114       </plugin>
115       <plugin>
116         <groupId>org.jacoco</groupId>
117         <artifactId>jacoco-maven-plugin</artifactId>
118       </plugin>
119     </plugins>
120   </build>
121   <scm>
122     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
123     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
124     <tag>HEAD</tag>
125     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
126   </scm>
127 </project>