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