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