IOvisor policy processing
[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.3.0-SNAPSHOT</version>
14     <relativePath>../</relativePath>
15   </parent>
16
17   <artifactId>iovisor-renderer</artifactId>
18   <packaging>bundle</packaging>
19
20   <properties>
21     <powermock.version>1.5.2</powermock.version>
22   </properties>
23
24   <dependencies>
25     <dependency>
26       <groupId>org.opendaylight.mdsal.model</groupId>
27       <artifactId>yang-ext</artifactId>
28     </dependency>
29
30     <!-- JERSEY -->
31     <dependency>
32         <groupId>com.sun.jersey</groupId>
33         <artifactId>jersey-core</artifactId>
34     </dependency>
35     <dependency>
36         <groupId>com.sun.jersey</groupId>
37         <artifactId>jersey-server</artifactId>
38     </dependency>
39     <dependency>
40         <groupId>org.opendaylight.controller.thirdparty</groupId>
41         <artifactId>com.sun.jersey.jersey-servlet</artifactId>
42     </dependency>
43
44     <!-- Eclipse persistence -->
45     <dependency>
46         <groupId>org.eclipse.persistence</groupId>
47         <artifactId>org.eclipse.persistence.moxy</artifactId>
48     </dependency>
49
50     <dependency>
51       <groupId>org.codehaus.enunciate</groupId>
52       <artifactId>enunciate-core-annotations</artifactId>
53     </dependency>
54
55     <!-- testing dependencies -->
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>sal-binding-broker-impl</artifactId>
59       <type>test-jar</type>
60       <scope>test</scope>
61     </dependency>
62     <dependency>
63       <groupId>junit</groupId>
64       <artifactId>junit</artifactId>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>org.mockito</groupId>
69       <artifactId>mockito-all</artifactId>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.powermock</groupId>
74       <artifactId>powermock-core</artifactId>
75       <version>${powermock.version}</version>
76       <scope>test</scope>
77     </dependency>
78     <dependency>
79       <groupId>org.powermock</groupId>
80       <artifactId>powermock-module-junit4</artifactId>
81       <version>${powermock.version}</version>
82       <scope>test</scope>
83     </dependency>
84     <dependency>
85       <groupId>org.powermock</groupId>
86       <artifactId>powermock-api-mockito</artifactId>
87       <version>${powermock.version}</version>
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             <Import-Package>
101               org.eclipse.jetty.servlets,
102               com.sun.jersey.spi.container.servlet,*
103               </Import-Package>
104             <Web-ContextPath>/controller/sb/iovisor</Web-ContextPath>
105           </instructions>
106           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
107         </configuration>
108       </plugin>
109     </plugins>
110   </build>
111 </project>