InsertOperation cleanup to get rid of Generic HashMaps to proper Row inserting using...
[netvirt.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.0-SNAPSHOT</version>
8         <relativePath>../commons/parent/</relativePath>
9     </parent>
10     <artifactId>ovsdb</artifactId>
11     <version>0.4.0-SNAPSHOT</version>
12     <packaging>bundle</packaging>
13
14     <build>
15         <plugins>
16             <plugin>
17                 <groupId>org.apache.felix</groupId>
18                 <artifactId>maven-bundle-plugin</artifactId>
19                 <version>2.3.6</version>
20                 <extensions>true</extensions>
21                 <configuration>
22                     <instructions>
23                         <Import-Package>
24                             org.opendaylight.controller.sal.packet,
25                             org.opendaylight.controller.sal.action,
26                             org.opendaylight.controller.sal.discovery,
27                             org.opendaylight.controller.sal.topology,
28                             org.opendaylight.controller.sal.core,
29                             org.opendaylight.controller.sal.flowprogrammer,
30                             org.opendaylight.controller.sal.reader,
31                             org.opendaylight.controller.sal.inventory,
32                             org.opendaylight.controller.sal.match,
33                             org.opendaylight.controller.sal.utils,
34                             org.opendaylight.controller.sal.connection,
35                             org.opendaylight.controller.clustering.services,
36                             org.opendaylight.controller.sal.networkconfig.bridgedomain,
37                             org.apache.commons.lang3.builder,
38                             org.apache.commons.lang3.tuple,
39                             org.apache.felix.dm,
40                             org.slf4j,
41                             org.eclipse.osgi.framework.console,
42                             org.osgi.framework,
43                             javax.net.ssl,
44                             *
45                         </Import-Package>
46                         <Embed-Dependency>httpclient,commons-codec,httpcore-nio,javax.servlet-api,jackson-annotations,jackson-core,jackson-databind,portlet-api,commons-collections;type=!pom;inline=false</Embed-Dependency>
47                         <Embed-Transitive>
48                             true
49                         </Embed-Transitive>
50                         <Bundle-Activator>
51                             org.opendaylight.ovsdb.plugin.Activator
52                         </Bundle-Activator>
53                     </instructions>
54                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
55                 </configuration>
56             </plugin>
57             <plugin>
58                <groupId>org.apache.maven.plugins</groupId>
59                <artifactId>maven-surefire-plugin</artifactId>
60                <version>2.16</version>
61                <configuration>
62                  <skipTests>true</skipTests>
63                </configuration>
64              </plugin>
65         </plugins>
66     </build>
67     <dependencies>
68         <dependency>
69           <groupId>org.opendaylight.controller</groupId>
70           <artifactId>clustering.services</artifactId>
71           <version>0.4.1-SNAPSHOT</version>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.controller</groupId>
75             <artifactId>sal</artifactId>
76             <version>0.5.0-SNAPSHOT</version>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.controller</groupId>
80             <artifactId>sal.connection</artifactId>
81             <version>0.1.0-SNAPSHOT</version>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.controller</groupId>
85             <artifactId>sal.networkconfiguration</artifactId>
86             <version>0.0.1-SNAPSHOT</version>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.controller.thirdparty</groupId>
90             <artifactId>org.openflow.openflowj</artifactId>
91             <version>1.0.2-SNAPSHOT</version>
92         </dependency>
93         <dependency>
94             <groupId>com.fasterxml.jackson.core</groupId>
95             <artifactId>jackson-annotations</artifactId>
96             <version>2.2.2</version>
97         </dependency>
98         <dependency>
99             <groupId>com.fasterxml.jackson.core</groupId>
100             <artifactId>jackson-core</artifactId>
101             <version>2.2.2</version>
102         </dependency>
103         <dependency>
104             <groupId>com.fasterxml.jackson.core</groupId>
105             <artifactId>jackson-databind</artifactId>
106             <version>2.2.2</version>
107         </dependency>
108         <dependency>
109             <groupId>javax.portlet</groupId>
110             <artifactId>portlet-api</artifactId>
111             <version>2.0</version>
112         </dependency>
113         <dependency>
114             <groupId>commons-codec</groupId>
115             <artifactId>commons-codec</artifactId>
116             <version>1.4</version>
117             <optional>true</optional>
118         </dependency>
119         <dependency>
120             <groupId>org.apache.httpcomponents</groupId>
121             <artifactId>httpcore-nio</artifactId>
122             <version>4.2.1</version>
123             <optional>true</optional>
124         </dependency>
125         <dependency>
126             <groupId>io.netty</groupId>
127             <artifactId>netty-all</artifactId>
128             <version>4.0.8.Final</version>
129         </dependency>
130         <dependency>
131             <groupId>commons-lang</groupId>
132             <artifactId>commons-lang</artifactId>
133             <version>2.3</version>
134         </dependency>
135         <dependency>
136           <groupId>commons-collections</groupId>
137           <artifactId>commons-collections</artifactId>
138           <version>1.0</version>
139         </dependency>
140     </dependencies>
141 </project>