Initial commit
[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.controller</groupId>
6     <artifactId>commons.opendaylight</artifactId>
7     <version>1.4.0-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>protocol_plugins.ovsdb</artifactId>
12   <version>0.4.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <build>
16     <plugins>
17       <plugin>
18         <groupId>org.apache.felix</groupId>
19         <artifactId>maven-bundle-plugin</artifactId>
20         <version>2.3.6</version>
21         <extensions>true</extensions>
22         <configuration>
23           <instructions>
24             <Import-Package>
25               org.opendaylight.controller.sal.packet,
26               org.opendaylight.controller.sal.action,
27               org.opendaylight.controller.sal.discovery,
28               org.opendaylight.controller.sal.topology,
29               org.opendaylight.controller.sal.core,
30               org.opendaylight.controller.sal.flowprogrammer,
31               org.opendaylight.controller.sal.reader,
32               org.opendaylight.controller.sal.inventory,
33               org.opendaylight.controller.sal.match,
34               org.opendaylight.controller.sal.utils,
35               org.opendaylight.controller.sal.configuration,
36               org.opendaylight.controller.sal.connection,
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               com.fasterxml.jackson.core,
44               com.fasterxml.jackson.databind,
45               com.fasterxml.jackson.databind.node,
46               com.fasterxml.jackson.annotation,
47               javax.net.ssl,
48               *
49             </Import-Package>
50             <Embed-Dependency>jsonrpc4j,httpclient,commons-codec,httpcore-nio,javax.servlet-api</Embed-Dependency>
51             <Embed-Transitive>
52               true
53             </Embed-Transitive>
54             <Bundle-Activator>
55               org.opendaylight.controller.protocol_plugin.ovsdb.internal.Activator
56             </Bundle-Activator>
57           </instructions>
58           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
59         </configuration>
60       </plugin>
61     </plugins>
62   </build>
63   <repositories>
64       <repository>
65         <id>jsonrpc4j-webdav-maven-repo</id>
66         <name>jsonrpc4j maven repository</name>
67         <url>http://jsonrpc4j.googlecode.com/svn/maven/repo/</url>
68         <layout>default</layout>
69     </repository>
70   </repositories>
71   <dependencies>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>sal</artifactId>
75       <version>0.5.0-SNAPSHOT</version>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.controller.thirdparty</groupId>
79       <artifactId>org.openflow.openflowj</artifactId>
80       <version>1.0.2-SNAPSHOT</version>
81     </dependency>
82     <dependency>
83       <groupId>junit</groupId>
84       <artifactId>junit</artifactId>
85       <version>4.8.1</version>
86       <scope>test</scope>
87     </dependency>
88     <dependency>
89      <groupId>com.googlecode</groupId>
90       <artifactId>jsonrpc4j</artifactId>
91       <version>0.28</version>
92     </dependency>
93     <dependency>
94       <groupId>com.fasterxml.jackson.core</groupId>
95       <artifactId>jackson-annotations</artifactId>
96       <version>2.0.2</version>
97     </dependency>
98     <dependency>
99       <groupId>com.fasterxml.jackson.core</groupId>
100       <artifactId>jackson-core</artifactId>
101       <version>2.0.2</version>
102     </dependency>
103     <dependency>
104      <groupId>com.fasterxml.jackson.core</groupId>
105       <artifactId>jackson-databind</artifactId>
106       <version>2.0.2</version>
107     </dependency>
108     <dependency>
109       <groupId>javax.portlet</groupId>
110       <artifactId>portlet-api</artifactId>
111       <version>2.0</version>
112     </dependency>
113
114 <!--
115                  | spring dependencies
116                  +-->
117                 <dependency>
118                         <groupId>org.springframework</groupId>
119                         <artifactId>spring-core</artifactId>
120                         <version>${spring.version}</version>
121                         <optional>true</optional>
122                 </dependency>
123                 <dependency>
124                         <groupId>org.springframework</groupId>
125                         <artifactId>spring-context</artifactId>
126                         <version>${spring.version}</version>
127                         <optional>true</optional>
128                 </dependency>
129                 <dependency>
130                         <groupId>org.springframework</groupId>
131                         <artifactId>spring-web</artifactId>
132                         <version>${spring.version}</version>
133                         <optional>true</optional>
134                 </dependency>
135                 <dependency>
136                         <groupId>org.springframework</groupId>
137                         <artifactId>spring-test</artifactId>
138                         <version>${spring.version}</version>
139                         <scope>test</scope>
140                 </dependency>
141
142                 <!--
143                 | apache http client
144                 +-->
145                 <dependency>
146                         <groupId>commons-codec</groupId>
147                         <artifactId>commons-codec</artifactId>
148                         <version>1.4</version>
149                         <optional>true</optional>
150                 </dependency>
151                 <dependency>
152                         <groupId>org.apache.httpcomponents</groupId>
153                         <artifactId>httpcore-nio</artifactId>
154                         <version>4.2.1</version>
155                         <optional>true</optional>
156                 </dependency>
157
158                 <!--
159                  | Servlet
160                  +-->
161                 <dependency>
162                         <groupId>javax.servlet</groupId>
163                         <artifactId>javax.servlet-api</artifactId>
164                         <version>3.1-b06</version>
165                         <scope>provided</scope>
166                 </dependency>
167
168                 <!--
169                  | test dependencies
170                  +-->
171                 <dependency>
172                         <groupId>junit</groupId>
173                         <artifactId>junit</artifactId>
174                         <version>4.10</version>
175                         <scope>test</scope>
176                 </dependency>
177                 <dependency>
178                         <groupId>org.jmock</groupId>
179                         <artifactId>jmock-junit4</artifactId>
180                         <version>2.5.1</version>
181                         <scope>test</scope>
182                 </dependency>
183                 <dependency>
184                         <groupId>org.jmock</groupId>
185                         <artifactId>jmock</artifactId>
186                         <version>2.5.1</version>
187                         <scope>test</scope>
188                 </dependency>
189                 <dependency>
190                         <groupId>org.eclipse.jetty</groupId>
191                         <artifactId>jetty-server</artifactId>
192                         <version>9.0.0.RC0</version>
193                         <scope>test</scope>
194                         <exclusions>
195                                 <exclusion>
196                                         <artifactId>javax.servlet</artifactId>
197                                         <groupId>org.eclipse.jetty.orbit</groupId>
198                                 </exclusion>
199                         </exclusions>
200                 </dependency>
201                 <dependency>
202                         <groupId>org.eclipse.jetty</groupId>
203                         <artifactId>jetty-servlet</artifactId>
204                         <version>9.0.0.RC0</version>
205                         <scope>test</scope>
206                         <exclusions>
207                                 <exclusion>
208                                         <artifactId>javax.servlet</artifactId>
209                                         <groupId>org.eclipse.jetty.orbit</groupId>
210                                 </exclusion>
211                         </exclusions>
212                 </dependency>
213   </dependencies>
214 </project>