Bug 7521: Convert byte[] to ShardManagerSnapshot in DatastoreSnapshot
[controller.git] / opendaylight / commons / filter-valve / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
4   ~
5   ~ This program and the accompanying materials are made available under the
6   ~ terms of the Eclipse Public License v1.0 which accompanies this distribution,
7   ~ and is available at http://www.eclipse.org/legal/epl-v10.html
8   -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11   <parent>
12     <groupId>org.opendaylight.odlparent</groupId>
13     <artifactId>odlparent</artifactId>
14     <version>1.8.0-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.controller</groupId>
19   <artifactId>filter-valve</artifactId>
20   <version>1.8.0-SNAPSHOT</version>
21   <packaging>bundle</packaging>
22
23   <dependencies>
24     <dependency>
25       <groupId>com.google.guava</groupId>
26       <artifactId>guava</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>commons-io</groupId>
30       <artifactId>commons-io</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>equinoxSDK381</groupId>
34       <artifactId>javax.servlet</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>orbit</groupId>
38       <artifactId>org.apache.catalina</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.slf4j</groupId>
42       <artifactId>slf4j-api</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>ch.qos.logback</groupId>
46       <artifactId>logback-classic</artifactId>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>junit</groupId>
51       <artifactId>junit</artifactId>
52       <scope>test</scope>
53     </dependency>
54   </dependencies>
55
56   <build>
57     <plugins>
58       <plugin>
59         <groupId>org.apache.felix</groupId>
60         <artifactId>maven-bundle-plugin</artifactId>
61         <configuration>
62           <instructions>
63             <Fragment-Host>org.eclipse.gemini.web.tomcat</Fragment-Host>
64             <Import-Package>javax.servlet,
65                             org.apache.catalina,
66                             org.apache.catalina.connector,
67                             org.apache.catalina.valves,
68                             org.slf4j,
69                             javax.xml.bind,
70                             javax.xml.bind.annotation,
71                             org.apache.commons.io,
72                             com.google.common.base,
73                             com.google.common.collect</Import-Package>
74           </instructions>
75         </configuration>
76       </plugin>
77       <plugin>
78         <groupId>org.opendaylight.yangtools</groupId>
79         <artifactId>yang-maven-plugin</artifactId>
80       </plugin>
81     </plugins>
82   </build>
83
84 </project>