Release Carbon
[groupbasedpolicy.git] / features / odl-groupbasedpolicy-ovssfc / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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-ovssfc</artifactId>
15     <version>0.5.0-Carbon</version>
16     <packaging>feature</packaging>
17     <!--
18         The OpenFlow Overlay renderer with SFC.
19
20         This can be added to the base to enable a
21         Network Virtualization behavior using OpenFlow that integrates with the SFC project
22     -->
23     <name>OpenDaylight :: groupbasedpolicy :: OpenFlow Overlay SFC 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>ovssfc-renderer</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>${project.groupId}</groupId>
72             <artifactId>odl-groupbasedpolicy-base</artifactId>
73             <type>xml</type>
74             <classifier>features</classifier>
75             <scope>runtime</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.openflowplugin</groupId>
79             <artifactId>odl-openflowplugin-flow-services</artifactId>
80             <type>xml</type>
81             <classifier>features</classifier>
82             <scope>runtime</scope>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.openflowplugin</groupId>
86             <artifactId>odl-openflowplugin-nxm-extensions</artifactId>
87             <type>xml</type>
88             <classifier>features</classifier>
89             <scope>runtime</scope>
90         </dependency>
91         <dependency>
92             <groupId>org.opendaylight.ovsdb</groupId>
93             <artifactId>odl-ovsdb-southbound-impl</artifactId>
94             <type>xml</type>
95             <classifier>features</classifier>
96             <scope>runtime</scope>
97         </dependency>
98         <dependency>
99             <groupId>org.opendaylight.sfc</groupId>
100             <artifactId>odl-sfc-openflow-renderer</artifactId>
101             <version>${sfc.version}</version>
102             <type>xml</type>
103             <classifier>features</classifier>
104             <scope>runtime</scope>
105         </dependency>
106         <dependency>
107             <groupId>org.opendaylight.sfc</groupId>
108             <artifactId>odl-sfc-ui</artifactId>
109             <version>${sfc.version}</version>
110             <type>xml</type>
111             <classifier>features</classifier>
112             <scope>runtime</scope>
113         </dependency>
114         <dependency>
115             <groupId>${project.groupId}</groupId>
116             <artifactId>ovssfc-renderer</artifactId>
117             <type>xml</type>
118             <classifier>config</classifier>
119             <scope>runtime</scope>
120         </dependency>
121     </dependencies>
122 </project>