Bump versions by x.y.(z+1)
[groupbasedpolicy.git] / features / odl-groupbasedpolicy-ofoverlay / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4     <parent>
5         <groupId>org.opendaylight.odlparent</groupId>
6         <artifactId>single-feature-parent</artifactId>
7         <version>3.1.4</version>
8         <relativePath/>
9     </parent>
10
11     <groupId>org.opendaylight.groupbasedpolicy</groupId>
12     <artifactId>odl-groupbasedpolicy-ofoverlay</artifactId>
13     <version>0.7.5-SNAPSHOT</version>
14     <packaging>feature</packaging>
15     <!--
16         The OpenFlow Overlay renderer.
17
18         This can be added to the base to enable a
19         Network Virtualization behavior using OpenFlow
20     -->
21     <!-- <name> formatting is used by autorelease to parse and notify projects on
22        build failure. Please do not modify this unless you have a good reason. -->
23     <name>ODL :: groupbasedpolicy :: ${project.artifactId}</name>
24
25     <properties>
26         <openflowplugin.version>0.6.5-SNAPSHOT</openflowplugin.version>
27         <ovsdb.southbound.version>1.6.5-SNAPSHOT</ovsdb.southbound.version>
28         <sfc.version>0.7.5-SNAPSHOT</sfc.version>
29     </properties>
30
31     <dependencyManagement>
32         <dependencies>
33             <!-- ODL-GBP-ARTIFACTS -->
34             <dependency>
35                 <groupId>${project.groupId}</groupId>
36                 <artifactId>groupbasedpolicy-artifacts</artifactId>
37                 <version>${project.version}</version>
38                 <type>pom</type>
39                 <scope>import</scope>
40             </dependency>
41             <!-- ODL-OPENFLOWPLUGIN-ARTIFACTS -->
42             <dependency>
43                 <groupId>org.opendaylight.openflowplugin</groupId>
44                 <artifactId>openflowplugin-artifacts</artifactId>
45                 <version>${openflowplugin.version}</version>
46                 <scope>import</scope>
47                 <type>pom</type>
48             </dependency>
49             <!-- OVSDB-ARTIFACTS -->
50             <dependency>
51                 <groupId>org.opendaylight.ovsdb</groupId>
52                 <artifactId>southbound-artifacts</artifactId>
53                 <version>${ovsdb.southbound.version}</version>
54                 <type>pom</type>
55                 <scope>import</scope>
56             </dependency>
57         </dependencies>
58     </dependencyManagement>
59
60     <dependencies>
61         <dependency>
62             <groupId>commons-net</groupId>
63             <artifactId>commons-net</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>${project.groupId}</groupId>
67             <artifactId>ofoverlay-renderer</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>com.sun.jersey</groupId>
71             <artifactId>jersey-core</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>com.sun.jersey</groupId>
75             <artifactId>jersey-client</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>com.google.code.gson</groupId>
79             <artifactId>gson</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>${project.groupId}</groupId>
83             <artifactId>odl-groupbasedpolicy-base</artifactId>
84             <type>xml</type>
85             <classifier>features</classifier>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.openflowplugin</groupId>
89             <artifactId>odl-openflowplugin-flow-services</artifactId>
90             <type>xml</type>
91             <classifier>features</classifier>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.openflowplugin</groupId>
95             <artifactId>odl-openflowplugin-nxm-extensions</artifactId>
96             <type>xml</type>
97             <classifier>features</classifier>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.ovsdb</groupId>
101             <artifactId>odl-ovsdb-southbound-impl</artifactId>
102             <classifier>features</classifier>
103             <type>xml</type>
104         </dependency>
105         <dependency>
106             <groupId>org.opendaylight.sfc</groupId>
107             <artifactId>odl-sfc-openflow-renderer</artifactId>
108             <version>${sfc.version}</version>
109             <type>xml</type>
110             <classifier>features</classifier>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.sfc</groupId>
114             <artifactId>odl-sfc-ui</artifactId>
115             <version>${sfc.version}</version>
116             <type>xml</type>
117             <classifier>features</classifier>
118         </dependency>
119     </dependencies>
120 </project>