Bump versions by 0.1.0 for next dev cycle
[groupbasedpolicy.git] / renderers / ofoverlay / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2015 Cisco Systems, Inc. and others. 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.5.0-SNAPSHOT</version>
14     <relativePath>../</relativePath>
15   </parent>
16
17   <artifactId>ofoverlay-renderer</artifactId>
18   <packaging>bundle</packaging>
19
20   <properties>
21     <ovsdb.version>1.4.0-SNAPSHOT</ovsdb.version>
22     <openflowplugin.version>0.4.0-SNAPSHOT</openflowplugin.version>
23     <liblldp.version>0.12.0-SNAPSHOT</liblldp.version>
24   </properties>
25
26   <dependencies>
27     <!-- model dependencies -->
28     <dependency>
29       <groupId>org.opendaylight.ovsdb</groupId>
30       <artifactId>southbound-api</artifactId>
31       <version>${ovsdb.version}</version>
32     </dependency>
33     <!-- project specific dependencies -->
34     <dependency>
35       <groupId>org.opendaylight.openflowplugin</groupId>
36       <artifactId>openflowplugin-extension-nicira</artifactId>
37       <version>${openflowplugin.version}</version>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.controller</groupId>
41       <artifactId>liblldp</artifactId>
42       <version>${liblldp.version}</version>
43     </dependency>
44     <dependency>
45       <groupId>commons-net</groupId>
46       <artifactId>commons-net</artifactId>
47     </dependency>
48     <!-- REST client-->
49     <dependency>
50        <groupId>com.sun.jersey</groupId>
51        <artifactId>jersey-client</artifactId>
52     </dependency>
53     <dependency>
54        <groupId>com.google.code.gson</groupId>
55        <artifactId>gson</artifactId>
56     </dependency>
57     <!-- SFC -->
58     <dependency>
59       <groupId>org.opendaylight.sfc</groupId>
60       <artifactId>sfc-provider</artifactId>
61     </dependency>
62     <!-- testing dependencies -->
63     <dependency>
64       <groupId>junit</groupId>
65       <artifactId>junit</artifactId>
66       <scope>test</scope>
67     </dependency>
68     <dependency>
69       <groupId>org.mockito</groupId>
70       <artifactId>mockito-all</artifactId>
71       <scope>test</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.controller</groupId>
75       <artifactId>sal-binding-broker-impl</artifactId>
76       <type>test-jar</type>
77       <scope>test</scope>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.groupbasedpolicy</groupId>
81       <artifactId>groupbasedpolicy</artifactId>
82       <version>${project.version}</version>
83       <type>test-jar</type>
84       <scope>test</scope>
85     </dependency>
86     <dependency>
87       <groupId>org.powermock</groupId>
88       <artifactId>powermock-module-junit4</artifactId>
89       <scope>test</scope>
90     </dependency>
91     <dependency>
92       <groupId>org.powermock</groupId>
93       <artifactId>powermock-api-mockito</artifactId>
94       <scope>test</scope>
95     </dependency>
96     <dependency>
97       <groupId>com.sun.jersey.jersey-test-framework</groupId>
98       <artifactId>jersey-test-framework-grizzly2</artifactId>
99       <scope>test</scope>
100     </dependency>
101
102   </dependencies>
103
104   <!-- project build -->
105   <build>
106     <!-- We use the maven-resources-plugin to copy a class from the groupbasepolicy
107       bundle that we need in order to run some unit tests in the renderer (classes
108       in the test directory aren't packaged in bundles, and instead of keeping
109       separate copies, we just copy the file(s) needed in order to run the test). -->
110     <plugins>
111       <plugin>
112         <groupId>org.apache.felix</groupId>
113         <artifactId>maven-bundle-plugin</artifactId>
114         <extensions>true</extensions>
115         <configuration>
116           <instructions>
117             <Export-Package>
118               org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.ofoverlay.rev140528.*
119             </Export-Package>
120           </instructions>
121         </configuration>
122       </plugin>
123     </plugins>
124   </build>
125 </project>