Merge branch 'master' into topic/schema
[ovsdb.git] / plugin / 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_plugin</artifactId>
11   <version>1.0.0-SNAPSHOT</version>
12   <packaging>bundle</packaging>
13
14   <properties>
15     <!-- used for filtering the integration test resource -->
16     <skip.integrationtest>true</skip.integrationtest>
17   </properties>
18   <dependencies>
19     <dependency>
20       <groupId>ch.qos.logback</groupId>
21       <artifactId>logback-classic</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>ch.qos.logback</groupId>
25       <artifactId>logback-core</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>com.fasterxml.jackson.core</groupId>
29       <artifactId>jackson-annotations</artifactId>
30       <version>${jackson.version}</version>
31     </dependency>
32     <dependency>
33       <groupId>com.fasterxml.jackson.core</groupId>
34       <artifactId>jackson-core</artifactId>
35       <version>${jackson.version}</version>
36     </dependency>
37     <dependency>
38       <groupId>com.fasterxml.jackson.core</groupId>
39       <artifactId>jackson-databind</artifactId>
40       <version>${jackson.version}</version>
41     </dependency>
42     <dependency>
43       <groupId>com.google.code.gson</groupId>
44       <artifactId>gson</artifactId>
45       <version>2.1</version>
46       <scope>compile</scope>
47     </dependency>
48     <dependency>
49       <groupId>com.google.guava</groupId>
50       <artifactId>guava</artifactId>
51       <version>${guava.version}</version>
52     </dependency>
53     <dependency>
54       <groupId>commons-codec</groupId>
55       <artifactId>commons-codec</artifactId>
56       <version>1.4</version>
57       <optional>true</optional>
58     </dependency>
59     <dependency>
60       <groupId>commons-collections</groupId>
61       <artifactId>commons-collections</artifactId>
62       <version>1.0</version>
63     </dependency>
64     <dependency>
65       <groupId>commons-lang</groupId>
66       <artifactId>commons-lang</artifactId>
67       <version>2.3</version>
68     </dependency>
69     <dependency>
70       <groupId>equinoxSDK381</groupId>
71       <artifactId>org.eclipse.osgi</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>io.netty</groupId>
75       <artifactId>netty-all</artifactId>
76       <version>4.0.10.Final</version>
77     </dependency>
78     <dependency>
79       <groupId>javax.portlet</groupId>
80       <artifactId>portlet-api</artifactId>
81       <version>2.0</version>
82     </dependency>
83     <dependency>
84       <groupId>junit</groupId>
85       <artifactId>junit</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>org.apache.httpcomponents</groupId>
89       <artifactId>httpcore-nio</artifactId>
90       <version>4.2.1</version>
91       <optional>true</optional>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.controller</groupId>
95       <artifactId>clustering.services</artifactId>
96       <version>0.5.1-SNAPSHOT</version>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.controller</groupId>
100       <artifactId>sal</artifactId>
101       <version>0.7.1-SNAPSHOT</version>
102     </dependency>
103     <dependency>
104       <groupId>org.opendaylight.controller</groupId>
105       <artifactId>sal.connection</artifactId>
106       <version>0.1.2-SNAPSHOT</version>
107     </dependency>
108     <dependency>
109       <groupId>org.opendaylight.controller</groupId>
110       <artifactId>sal.networkconfiguration</artifactId>
111       <version>0.0.3-SNAPSHOT</version>
112     </dependency>
113     <dependency>
114       <groupId>org.opendaylight.ovsdb</groupId>
115       <artifactId>ovsdb_library</artifactId>
116       <version>1.0.0-SNAPSHOT</version>
117     </dependency>
118     <dependency>
119       <groupId>org.slf4j</groupId>
120       <artifactId>slf4j-api</artifactId>
121     </dependency>
122   </dependencies>
123
124   <build>
125     <testResources>
126       <testResource>
127         <filtering>true</filtering>
128         <directory>src/test/resources</directory>
129       </testResource>
130     </testResources>
131     <plugins>
132       <plugin>
133         <groupId>org.apache.felix</groupId>
134         <artifactId>maven-bundle-plugin</artifactId>
135         <version>2.3.6</version>
136         <extensions>true</extensions>
137         <configuration>
138           <instructions>
139             <Import-Package>org.opendaylight.controller.sal.packet,
140                             org.opendaylight.controller.sal.action,
141                             org.opendaylight.controller.sal.discovery,
142                             org.opendaylight.controller.sal.topology,
143                             org.opendaylight.controller.sal.core,
144                             org.opendaylight.controller.sal.flowprogrammer,
145                             org.opendaylight.controller.sal.reader,
146                             org.opendaylight.controller.sal.inventory,
147                             org.opendaylight.controller.sal.match,
148                             org.opendaylight.controller.sal.utils,
149                             org.opendaylight.controller.sal.connection,
150                             org.opendaylight.controller.clustering.services,
151                             org.opendaylight.controller.sal.networkconfig.bridgedomain,
152                             org.opendaylight.ovsdb.lib.table,
153                             org.opendaylight.ovsdb.plugin,
154                             org.opendaylight.ovsdb.lib.notation,
155                             org.opendaylight.ovsdb.lib.database,
156                             org.opendaylight.ovsdb.lib.operations,
157                             org.opendaylight.ovsdb.lib.message,
158                             org.apache.commons.lang3.builder,
159                             org.apache.commons.lang3.tuple,
160                             org.apache.felix.dm,
161                             org.slf4j,
162                             org.eclipse.osgi.framework.console,
163                             org.osgi.framework,
164                             javax.net.ssl,
165                             *</Import-Package>
166             <Embed-Dependency>httpclient,commons-codec,httpcore-nio,javax.servlet-api,portlet-api,commons-collections;type=!pom;inline=false</Embed-Dependency>
167             <Embed-Transitive>true</Embed-Transitive>
168             <Bundle-Activator>org.opendaylight.ovsdb.plugin.Activator</Bundle-Activator>
169             <Export-Package>org.opendaylight.ovsdb.plugin</Export-Package>
170           </instructions>
171           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
172         </configuration>
173       </plugin>
174       <plugin>
175         <groupId>org.apache.maven.plugins</groupId>
176         <artifactId>maven-failsafe-plugin</artifactId>
177         <configuration>
178           <skipITs>${skip.integrationtest}</skipITs>
179         </configuration>
180       </plugin>
181       <plugin>
182         <groupId>org.apache.maven.plugins</groupId>
183         <artifactId>maven-surefire-plugin</artifactId>
184         <version>2.16</version>
185         <configuration>
186           <excludes>
187             <!--  Exclude integration tests -->
188             <exclude>**/*IT</exclude>
189           </excludes>
190         </configuration>
191       </plugin>
192     </plugins>
193   </build>
194   <scm>
195     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
196     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
197     <tag>HEAD</tag>
198     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
199   </scm>
200
201   <profiles>
202     <profile>
203       <id>integrationtest</id>
204       <activation></activation>
205       <properties>
206         <skip.integrationtest>false</skip.integrationtest>
207       </properties>
208     </profile>
209   </profiles>
210 </project>