BUG 5370 - changes required by java8
[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>org.eclipse.persistence</groupId>
46         <artifactId>org.eclipse.persistence.moxy</artifactId>
47     </dependency>
48
49     <dependency>
50       <groupId>org.codehaus.enunciate</groupId>
51       <artifactId>enunciate-core-annotations</artifactId>
52     </dependency>
53
54     <!-- testing dependencies -->
55     <dependency>
56       <groupId>org.opendaylight.controller</groupId>
57       <artifactId>sal-binding-broker-impl</artifactId>
58       <type>test-jar</type>
59       <scope>test</scope>
60     </dependency>
61     <dependency>
62       <groupId>junit</groupId>
63       <artifactId>junit</artifactId>
64       <scope>test</scope>
65     </dependency>
66     <dependency>
67       <groupId>org.mockito</groupId>
68       <artifactId>mockito-all</artifactId>
69       <scope>test</scope>
70     </dependency>
71     <dependency>
72       <groupId>org.powermock</groupId>
73       <artifactId>powermock-core</artifactId>
74       <scope>test</scope>
75     </dependency>
76     <dependency>
77       <groupId>org.powermock</groupId>
78       <artifactId>powermock-module-junit4</artifactId>
79       <scope>test</scope>
80     </dependency>
81     <dependency>
82       <groupId>org.powermock</groupId>
83       <artifactId>powermock-api-mockito</artifactId>
84       <scope>test</scope>
85     </dependency>
86   </dependencies>
87
88   <build>
89     <plugins>
90       <plugin>
91         <groupId>org.apache.felix</groupId>
92         <artifactId>maven-bundle-plugin</artifactId>
93         <extensions>true</extensions>
94         <configuration>
95           <instructions>
96           </instructions>
97           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
98         </configuration>
99       </plugin>
100     </plugins>
101   </build>
102 </project>