Release Carbon
[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>1.8.0-Carbon</version>
10         <relativePath/>
11     </parent>
12
13     <groupId>org.opendaylight.groupbasedpolicy</groupId>
14     <artifactId>odl-groupbasedpolicy-ofoverlay</artifactId>
15     <version>0.5.0-Carbon</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>OpenDaylight :: groupbasedpolicy :: OpenFlow Overlay Renderer</name>
24
25     <properties>
26         <openflowplugin.version>0.4.0-Carbon</openflowplugin.version>
27         <ovsdb.southbound.version>1.4.0-Carbon</ovsdb.southbound.version>
28         <config.configfile.directory>etc/opendaylight/karaf</config.configfile.directory>
29         <sfc.version>0.5.0-Carbon</sfc.version>
30     </properties>
31
32     <dependencyManagement>
33         <dependencies>
34             <!-- ODL-GBP-ARTIFACTS -->
35             <dependency>
36                 <groupId>${project.groupId}</groupId>
37                 <artifactId>groupbasedpolicy-artifacts</artifactId>
38                 <version>${project.version}</version>
39                 <type>pom</type>
40                 <scope>import</scope>
41             </dependency>
42             <!-- ODL-OPENFLOWPLUGIN-ARTIFACTS -->
43             <dependency>
44                 <groupId>org.opendaylight.openflowplugin</groupId>
45                 <artifactId>openflowplugin-artifacts</artifactId>
46                 <version>${openflowplugin.version}</version>
47                 <scope>import</scope>
48                 <type>pom</type>
49             </dependency>
50             <!-- OVSDB-ARTIFACTS -->
51             <dependency>
52                 <groupId>org.opendaylight.ovsdb</groupId>
53                 <artifactId>southbound-artifacts</artifactId>
54                 <version>${ovsdb.southbound.version}</version>
55                 <type>pom</type>
56                 <scope>import</scope>
57             </dependency>
58         </dependencies>
59     </dependencyManagement>
60
61     <dependencies>
62         <dependency>
63             <groupId>commons-net</groupId>
64             <artifactId>commons-net</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>${project.groupId}</groupId>
68             <artifactId>ofoverlay-renderer</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>com.sun.jersey</groupId>
72             <artifactId>jersey-core</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>com.sun.jersey</groupId>
76             <artifactId>jersey-client</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>com.google.code.gson</groupId>
80             <artifactId>gson</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>${project.groupId}</groupId>
84             <artifactId>odl-groupbasedpolicy-base</artifactId>
85             <type>xml</type>
86             <classifier>features</classifier>
87             <scope>runtime</scope>
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             <scope>runtime</scope>
95         </dependency>
96         <dependency>
97             <groupId>org.opendaylight.openflowplugin</groupId>
98             <artifactId>odl-openflowplugin-nxm-extensions</artifactId>
99             <type>xml</type>
100             <classifier>features</classifier>
101             <scope>runtime</scope>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.ovsdb</groupId>
105             <artifactId>odl-ovsdb-southbound-impl</artifactId>
106             <classifier>features</classifier>
107             <type>xml</type>
108         </dependency>
109         <dependency>
110             <groupId>org.opendaylight.sfc</groupId>
111             <artifactId>odl-sfc-openflow-renderer</artifactId>
112             <version>${sfc.version}</version>
113             <type>xml</type>
114             <classifier>features</classifier>
115             <scope>runtime</scope>
116         </dependency>
117         <dependency>
118             <groupId>org.opendaylight.sfc</groupId>
119             <artifactId>odl-sfc-ui</artifactId>
120             <version>${sfc.version}</version>
121             <type>xml</type>
122             <classifier>features</classifier>
123             <scope>runtime</scope>
124         </dependency>
125         <dependency>
126             <groupId>${project.groupId}</groupId>
127             <artifactId>ofoverlay-renderer</artifactId>
128             <type>xml</type>
129             <classifier>config</classifier>
130             <scope>runtime</scope>
131         </dependency>
132     </dependencies>
133 </project>