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