Migrate to odlparent 1.8.0-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.6.0-SNAPSHOT</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> 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.0-SNAPSHOT</openflowplugin.version>
29         <ovsdb.southbound.version>1.5.0-SNAPSHOT</ovsdb.southbound.version>
30         <config.configfile.directory>etc/opendaylight/karaf</config.configfile.directory>
31         <sfc.version>0.6.0-SNAPSHOT</sfc.version>
32     </properties>
33
34     <dependencyManagement>
35         <dependencies>
36             <!-- ODL-GBP-ARTIFACTS -->
37             <dependency>
38                 <groupId>${project.groupId}</groupId>
39                 <artifactId>groupbasedpolicy-artifacts</artifactId>
40                 <version>${project.version}</version>
41                 <type>pom</type>
42                 <scope>import</scope>
43             </dependency>
44             <!-- ODL-OPENFLOWPLUGIN-ARTIFACTS -->
45             <dependency>
46                 <groupId>org.opendaylight.openflowplugin</groupId>
47                 <artifactId>openflowplugin-artifacts</artifactId>
48                 <version>${openflowplugin.version}</version>
49                 <scope>import</scope>
50                 <type>pom</type>
51             </dependency>
52             <!-- OVSDB-ARTIFACTS -->
53             <dependency>
54                 <groupId>org.opendaylight.ovsdb</groupId>
55                 <artifactId>southbound-artifacts</artifactId>
56                 <version>${ovsdb.southbound.version}</version>
57                 <type>pom</type>
58                 <scope>import</scope>
59             </dependency>
60         </dependencies>
61     </dependencyManagement>
62
63     <dependencies>
64         <dependency>
65             <groupId>commons-net</groupId>
66             <artifactId>commons-net</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>${project.groupId}</groupId>
70             <artifactId>ovssfc-renderer</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>${project.groupId}</groupId>
74             <artifactId>odl-groupbasedpolicy-base</artifactId>
75             <type>xml</type>
76             <classifier>features</classifier>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.openflowplugin</groupId>
80             <artifactId>odl-openflowplugin-flow-services</artifactId>
81             <type>xml</type>
82             <classifier>features</classifier>
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         </dependency>
90         <dependency>
91             <groupId>org.opendaylight.ovsdb</groupId>
92             <artifactId>odl-ovsdb-southbound-impl</artifactId>
93             <type>xml</type>
94             <classifier>features</classifier>
95         </dependency>
96         <dependency>
97             <groupId>org.opendaylight.sfc</groupId>
98             <artifactId>odl-sfc-openflow-renderer</artifactId>
99             <version>${sfc.version}</version>
100             <type>xml</type>
101             <classifier>features</classifier>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.sfc</groupId>
105             <artifactId>odl-sfc-ui</artifactId>
106             <version>${sfc.version}</version>
107             <type>xml</type>
108             <classifier>features</classifier>
109         </dependency>
110         <dependency>
111             <groupId>${project.groupId}</groupId>
112             <artifactId>ovssfc-renderer</artifactId>
113             <type>xml</type>
114             <classifier>config</classifier>
115         </dependency>
116     </dependencies>
117 </project>