Use AAAShiroFilter as TokenAuthFilter was deprecated in Be
[groupbasedpolicy.git] / renderers / iovisor / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2015 Cisco Systems. All rights reserved. 
3   This program and the accompanying materials are made available under the 
4   terms of the Eclipse Public License v1.0 which accompanies this distribution, 
5   and is available at http://www.eclipse.org/legal/epl-v10.html -->
6 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
8   <modelVersion>4.0.0</modelVersion>
9
10   <parent>
11     <groupId>org.opendaylight.groupbasedpolicy</groupId>
12     <artifactId>groupbasedpolicy-renderers</artifactId>
13     <version>0.4.0-SNAPSHOT</version>
14     <relativePath>../</relativePath>
15   </parent>
16
17   <artifactId>iovisor-renderer</artifactId>
18   <packaging>bundle</packaging>
19
20   <dependencies>
21     <dependency>
22       <groupId>org.opendaylight.mdsal.model</groupId>
23       <artifactId>yang-ext</artifactId>
24     </dependency>
25     <!-- REST client-->
26     <dependency>
27       <groupId>com.sun.jersey</groupId>
28       <artifactId>jersey-client</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>com.sun.jersey</groupId>
32       <artifactId>jersey-json</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>com.google.code.gson</groupId>
36       <artifactId>gson</artifactId>
37     </dependency>
38     <!-- JERSEY -->
39     <dependency>
40         <groupId>com.sun.jersey</groupId>
41         <artifactId>jersey-core</artifactId>
42     </dependency>
43     <!-- Eclipse persistence -->
44     <dependency>
45       <groupId>javax.validation</groupId>
46       <artifactId>validation-api</artifactId>
47     </dependency>
48     <dependency>
49         <groupId>org.eclipse.persistence</groupId>
50         <artifactId>org.eclipse.persistence.moxy</artifactId>
51     </dependency>
52
53     <dependency>
54       <groupId>org.codehaus.enunciate</groupId>
55       <artifactId>enunciate-core-annotations</artifactId>
56     </dependency>
57
58     <!-- testing dependencies -->
59     <dependency>
60       <groupId>org.opendaylight.controller</groupId>
61       <artifactId>sal-binding-broker-impl</artifactId>
62       <type>test-jar</type>
63       <scope>test</scope>
64     </dependency>
65     <dependency>
66       <groupId>junit</groupId>
67       <artifactId>junit</artifactId>
68       <scope>test</scope>
69     </dependency>
70     <dependency>
71       <groupId>org.mockito</groupId>
72       <artifactId>mockito-all</artifactId>
73       <scope>test</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.powermock</groupId>
77       <artifactId>powermock-core</artifactId>
78       <scope>test</scope>
79     </dependency>
80     <dependency>
81       <groupId>org.powermock</groupId>
82       <artifactId>powermock-module-junit4</artifactId>
83       <scope>test</scope>
84     </dependency>
85     <dependency>
86       <groupId>org.powermock</groupId>
87       <artifactId>powermock-api-mockito</artifactId>
88       <scope>test</scope>
89     </dependency>
90   </dependencies>
91
92   <build>
93     <plugins>
94       <plugin>
95         <groupId>org.apache.felix</groupId>
96         <artifactId>maven-bundle-plugin</artifactId>
97         <extensions>true</extensions>
98         <configuration>
99           <instructions>
100           </instructions>
101           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
102           <Import-Package>
103             *,
104             com.sun.jersey.spi.container.servlet,
105             org.eclipse.jetty.servlets,
106             org.opendaylight.aaa.shiro.filters,
107             org.opendaylight.aaa.shiro.realm,
108             org.opendaylight.aaa.shiro.web.env,
109             org.apache.shiro.web.env
110           </Import-Package>
111         </configuration>
112       </plugin>
113     </plugins>
114   </build>
115 </project>