a239795f2a7c0ae14acd1bc50313099a23606c66
[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
12   <parent>
13     <groupId>org.opendaylight.odlparent</groupId>
14     <artifactId>odlparent</artifactId>
15     <version>1.8.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.controller</groupId>
20   <artifactId>filter-valve</artifactId>
21   <version>1.8.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23
24   <dependencies>
25     <dependency>
26       <groupId>com.google.guava</groupId>
27       <artifactId>guava</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>commons-io</groupId>
31       <artifactId>commons-io</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>equinoxSDK381</groupId>
35       <artifactId>javax.servlet</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>orbit</groupId>
39       <artifactId>org.apache.catalina</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.slf4j</groupId>
43       <artifactId>slf4j-api</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>ch.qos.logback</groupId>
47       <artifactId>logback-classic</artifactId>
48       <scope>test</scope>
49     </dependency>
50     <dependency>
51       <groupId>junit</groupId>
52       <artifactId>junit</artifactId>
53       <scope>test</scope>
54     </dependency>
55   </dependencies>
56
57   <build>
58     <plugins>
59       <plugin>
60         <groupId>org.apache.felix</groupId>
61         <artifactId>maven-bundle-plugin</artifactId>
62         <configuration>
63           <instructions>
64             <Fragment-Host>org.eclipse.gemini.web.tomcat</Fragment-Host>
65             <Import-Package>javax.servlet,
66                             org.apache.catalina,
67                             org.apache.catalina.connector,
68                             org.apache.catalina.valves,
69                             org.slf4j,
70                             javax.xml.bind,
71                             javax.xml.bind.annotation,
72                             org.apache.commons.io,
73                             com.google.common.base,
74                             com.google.common.collect</Import-Package>
75           </instructions>
76         </configuration>
77       </plugin>
78     </plugins>
79   </build>
80
81 </project>