Bump SFC dependency version
[netvirt.git] / openstack / sfc-translator / features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2016 Brocade Communications Systems, Inc. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <parent>
13     <groupId>org.opendaylight.odlparent</groupId>
14     <artifactId>features-parent</artifactId>
15     <version>1.8.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18   <groupId>org.opendaylight.netvirt</groupId>
19   <artifactId>openstack.sfc-translator-features</artifactId>
20   <version>1.4.0-SNAPSHOT</version>
21   <name>${project.artifactId}</name>
22   <modelVersion>4.0.0</modelVersion>
23   <properties>
24     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
25     <neutron.version>0.8.0-SNAPSHOT</neutron.version>
26     <controller.mdsal.version>1.5.0-SNAPSHOT</controller.mdsal.version>
27     <dlux.version>0.5.0-SNAPSHOT</dlux.version>
28     <mdsal.model.version>0.10.0-SNAPSHOT</mdsal.model.version>
29     <restconf.version>1.5.0-SNAPSHOT</restconf.version>
30     <sfc.version>0.5.0-SNAPSHOT</sfc.version>
31   </properties>
32   <dependencies>
33     <dependency>
34       <groupId>org.opendaylight.dlux</groupId>
35       <artifactId>features-dlux</artifactId>
36       <classifier>features</classifier>
37       <version>${dlux.version}</version>
38       <type>xml</type>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.controller</groupId>
42       <artifactId>features-mdsal</artifactId>
43       <version>${controller.mdsal.version}</version>
44       <classifier>features</classifier>
45       <type>xml</type>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.mdsal.model</groupId>
49       <artifactId>features-mdsal-model</artifactId>
50       <version>${mdsal.model.version}</version>
51       <classifier>features</classifier>
52       <type>xml</type>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.netconf</groupId>
56       <artifactId>features-restconf</artifactId>
57       <version>${restconf.version}</version>
58       <classifier>features</classifier>
59       <type>xml</type>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.neutron</groupId>
63       <artifactId>features-neutron</artifactId>
64       <version>${neutron.version}</version>
65       <classifier>features</classifier>
66       <type>xml</type>
67     </dependency>
68     <dependency>
69       <groupId>${project.groupId}</groupId>
70       <artifactId>features-netvirt</artifactId>
71       <version>${project.version}</version>
72       <classifier>features</classifier>
73       <type>xml</type>
74     </dependency>
75     <dependency>
76       <groupId>${project.groupId}</groupId>
77       <artifactId>openstack.net-virt-sfc-features</artifactId>
78       <version>${project.version}</version>
79       <classifier>features</classifier>
80       <type>xml</type>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.sfc</groupId>
84       <artifactId>features-sfc</artifactId>
85       <version>${sfc.version}</version>
86       <classifier>features</classifier>
87       <type>xml</type>
88     </dependency>
89     <dependency>
90       <groupId>${project.groupId}</groupId>
91       <artifactId>openstack.sfc-translator-impl</artifactId>
92       <version>${project.version}</version>
93     </dependency>
94     <dependency>
95       <groupId>${project.groupId}</groupId>
96       <artifactId>utils.mdsal-utils</artifactId>
97       <version>${project.version}</version>
98     </dependency>
99   </dependencies>
100
101   <!--
102       Maven Site Configuration
103
104       The following configuration is necessary for maven-site-plugin to
105       correctly identify the correct deployment path for OpenDaylight Maven
106       sites.
107   -->
108   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
109
110   <distributionManagement>
111     <site>
112       <id>opendaylight-site</id>
113       <url>${nexus.site.url}/${project.artifactId}/</url>
114     </site>
115   </distributionManagement>
116 </project>