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