e1455afee9f9c32ab35992d0e8910bcbe10feac6
[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.6.1-SNAPSHOT</version>
14     <relativePath>../</relativePath>
15   </parent>
16
17   <artifactId>iovisor-renderer</artifactId>
18   <packaging>bundle</packaging>
19   <!-- <name> formatting is used by autorelease to parse and notify projects on
20        build failure. Please do not modify this unless you have a good reason. -->
21   <name>ODL :: groupbasedpolicy :: ${project.artifactId}</name>
22
23   <dependencies>
24     <dependency>
25       <groupId>org.opendaylight.mdsal.model</groupId>
26       <artifactId>yang-ext</artifactId>
27     </dependency>
28     <!-- REST client-->
29     <dependency>
30       <groupId>com.sun.jersey</groupId>
31       <artifactId>jersey-client</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>com.sun.jersey</groupId>
35       <artifactId>jersey-json</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>com.google.code.gson</groupId>
39       <artifactId>gson</artifactId>
40     </dependency>
41     <!-- JERSEY -->
42     <dependency>
43         <groupId>com.sun.jersey</groupId>
44         <artifactId>jersey-core</artifactId>
45     </dependency>
46     <!-- Eclipse persistence -->
47     <dependency>
48       <groupId>javax.validation</groupId>
49       <artifactId>validation-api</artifactId>
50     </dependency>
51     <dependency>
52         <groupId>org.eclipse.persistence</groupId>
53         <artifactId>org.eclipse.persistence.moxy</artifactId>
54     </dependency>
55
56     <dependency>
57       <groupId>org.codehaus.enunciate</groupId>
58       <artifactId>enunciate-core-annotations</artifactId>
59     </dependency>
60
61     <!-- testing dependencies -->
62     <dependency>
63       <groupId>org.opendaylight.controller</groupId>
64       <artifactId>sal-binding-broker-impl</artifactId>
65       <type>test-jar</type>
66       <scope>test</scope>
67     </dependency>
68     <dependency>
69       <groupId>junit</groupId>
70       <artifactId>junit</artifactId>
71       <scope>test</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.mockito</groupId>
75       <artifactId>mockito-core</artifactId>
76       <scope>test</scope>
77     </dependency>
78     <dependency>
79       <groupId>org.powermock</groupId>
80       <artifactId>powermock-core</artifactId>
81       <scope>test</scope>
82     </dependency>
83     <dependency>
84       <groupId>org.powermock</groupId>
85       <artifactId>powermock-module-junit4</artifactId>
86       <scope>test</scope>
87     </dependency>
88     <dependency>
89       <groupId>org.powermock</groupId>
90       <artifactId>powermock-api-mockito</artifactId>
91       <scope>test</scope>
92     </dependency>
93       <dependency>
94           <groupId>com.sun.jersey.jersey-test-framework</groupId>
95           <artifactId>jersey-test-framework-grizzly2</artifactId>
96           <scope>test</scope>
97       </dependency>
98   </dependencies>
99
100   <build>
101     <plugins>
102       <plugin>
103         <groupId>org.apache.felix</groupId>
104         <artifactId>maven-bundle-plugin</artifactId>
105         <extensions>true</extensions>
106         <configuration>
107           <instructions>
108           </instructions>
109           <Import-Package>
110             *,
111             com.sun.jersey.spi.container.servlet,
112             org.eclipse.jetty.servlets,
113             org.opendaylight.aaa.shiro.filters,
114             org.opendaylight.aaa.shiro.realm,
115             org.opendaylight.aaa.shiro.web.env,
116             org.apache.shiro.web.env
117           </Import-Package>
118         </configuration>
119       </plugin>
120     </plugins>
121   </build>
122 </project>