Code ReOrganization and Re-Architecture changes
[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>ovsdb_commons</artifactId>
7     <version>1.1.0-SNAPSHOT</version>
8     <relativePath>../commons/parent</relativePath>
9   </parent>
10   <artifactId>ovsdb_library</artifactId>
11   <version>1.0.0-SNAPSHOT</version>
12   <packaging>bundle</packaging>
13
14   <properties>
15     <!-- used for filtering the integration test resource -->
16     <ovsdbserver.ipaddress>192.168.56.10</ovsdbserver.ipaddress>
17     <ovsdbserver.port>6640</ovsdbserver.port>
18     <skip.integrationtest>true</skip.integrationtest>
19   </properties>
20   <dependencies>
21     <dependency>
22       <groupId>ch.qos.logback</groupId>
23       <artifactId>logback-classic</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>ch.qos.logback</groupId>
27       <artifactId>logback-core</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>com.fasterxml.jackson.core</groupId>
31       <artifactId>jackson-annotations</artifactId>
32       <version>${jackson.version}</version>
33     </dependency>
34     <dependency>
35       <groupId>com.fasterxml.jackson.core</groupId>
36       <artifactId>jackson-core</artifactId>
37       <version>${jackson.version}</version>
38     </dependency>
39     <dependency>
40       <groupId>com.fasterxml.jackson.core</groupId>
41       <artifactId>jackson-databind</artifactId>
42       <version>${jackson.version}</version>
43     </dependency>
44     <dependency>
45       <groupId>com.google.code.gson</groupId>
46       <artifactId>gson</artifactId>
47       <version>2.1</version>
48       <scope>compile</scope>
49     </dependency>
50     <dependency>
51       <groupId>com.google.guava</groupId>
52       <artifactId>guava</artifactId>
53       <version>${guava.version}</version>
54     </dependency>
55     <dependency>
56       <groupId>commons-codec</groupId>
57       <artifactId>commons-codec</artifactId>
58       <version>1.4</version>
59       <optional>true</optional>
60     </dependency>
61     <dependency>
62       <groupId>commons-collections</groupId>
63       <artifactId>commons-collections</artifactId>
64       <version>1.0</version>
65     </dependency>
66     <dependency>
67       <groupId>commons-lang</groupId>
68       <artifactId>commons-lang</artifactId>
69       <version>2.3</version>
70     </dependency>
71     <dependency>
72       <groupId>equinoxSDK381</groupId>
73       <artifactId>org.eclipse.osgi</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>io.netty</groupId>
77       <artifactId>netty-all</artifactId>
78       <version>4.0.10.Final</version>
79     </dependency>
80     <dependency>
81       <groupId>javax.portlet</groupId>
82       <artifactId>portlet-api</artifactId>
83       <version>2.0</version>
84     </dependency>
85     <dependency>
86       <groupId>junit</groupId>
87       <artifactId>junit</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>org.apache.httpcomponents</groupId>
91       <artifactId>httpcore-nio</artifactId>
92       <version>4.2.1</version>
93       <optional>true</optional>
94     </dependency>
95     <dependency>
96       <groupId>org.slf4j</groupId>
97       <artifactId>slf4j-api</artifactId>
98     </dependency>
99   </dependencies>
100
101   <build>
102     <testResources>
103       <testResource>
104         <filtering>true</filtering>
105         <directory>src/test/resources</directory>
106       </testResource>
107     </testResources>
108     <plugins>
109       <plugin>
110         <groupId>org.apache.felix</groupId>
111         <artifactId>maven-bundle-plugin</artifactId>
112         <version>2.3.6</version>
113         <extensions>true</extensions>
114         <configuration>
115           <instructions>
116             <Import-Package>org.apache.commons.lang3.builder,
117                 org.apache.commons.lang3.tuple,
118                 org.apache.felix.dm,
119                 org.slf4j,
120                 org.eclipse.osgi.framework.console,
121                 org.osgi.framework,
122                 javax.net.ssl,
123                 *</Import-Package>
124             <Embed-Transitive>true</Embed-Transitive>
125             <Export-Package>org.opendaylight.ovsdb.lib,
126                 org.opendaylight.ovsdb.lib.table,
127                 org.opendaylight.ovsdb.lib.jsonrpc,
128                 org.opendaylight.ovsdb.lib.notation,
129                 org.opendaylight.ovsdb.lib.database,
130                 org.opendaylight.ovsdb.lib.operations,
131                 org.opendaylight.ovsdb.lib.message,
132                 org.opendaylight.ovsdb.lib.schema</Export-Package>
133           </instructions>
134           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
135         </configuration>
136       </plugin>
137       <plugin>
138         <groupId>org.apache.maven.plugins</groupId>
139         <artifactId>maven-failsafe-plugin</artifactId>
140         <configuration>
141           <skipITs>${skip.integrationtest}</skipITs>
142         </configuration>
143       </plugin>
144       <plugin>
145         <groupId>org.apache.maven.plugins</groupId>
146         <artifactId>maven-surefire-plugin</artifactId>
147         <version>2.16</version>
148         <configuration>
149           <excludes>
150             <!--  Exclude integration tests -->
151             <exclude>**/*IT</exclude>
152           </excludes>
153         </configuration>
154       </plugin>
155     </plugins>
156   </build>
157   <scm>
158     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
159     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
160     <tag>HEAD</tag>
161     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
162   </scm>
163
164   <profiles>
165     <profile>
166       <id>integrationtest</id>
167       <activation></activation>
168       <properties>
169         <skip.integrationtest>false</skip.integrationtest>
170       </properties>
171     </profile>
172   </profiles>
173 </project>