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