e6538372d80b2f9d8366eb35ae32b2e27baf9d40
[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   <prerequisites>
24     <maven>3.1.1</maven>
25   </prerequisites>
26   <properties>
27     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
28     <neutron.version>0.8.0-SNAPSHOT</neutron.version>
29     <controller.mdsal.version>1.5.0-SNAPSHOT</controller.mdsal.version>
30     <dlux.version>0.5.0-SNAPSHOT</dlux.version>
31     <mdsal.model.version>0.10.0-SNAPSHOT</mdsal.model.version>
32     <restconf.version>1.5.0-SNAPSHOT</restconf.version>
33     <sfc.version>0.4.0-SNAPSHOT</sfc.version>
34   </properties>
35   <dependencies>
36     <dependency>
37       <groupId>org.opendaylight.dlux</groupId>
38       <artifactId>features-dlux</artifactId>
39       <classifier>features</classifier>
40       <version>${dlux.version}</version>
41       <type>xml</type>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.controller</groupId>
45       <artifactId>features-mdsal</artifactId>
46       <version>${controller.mdsal.version}</version>
47       <classifier>features</classifier>
48       <type>xml</type>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.mdsal.model</groupId>
52       <artifactId>features-mdsal-model</artifactId>
53       <version>${mdsal.model.version}</version>
54       <classifier>features</classifier>
55       <type>xml</type>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.netconf</groupId>
59       <artifactId>features-restconf</artifactId>
60       <version>${restconf.version}</version>
61       <classifier>features</classifier>
62       <type>xml</type>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.neutron</groupId>
66       <artifactId>features-neutron</artifactId>
67       <version>${neutron.version}</version>
68       <classifier>features</classifier>
69       <type>xml</type>
70     </dependency>
71     <dependency>
72       <groupId>${project.groupId}</groupId>
73       <artifactId>features-netvirt</artifactId>
74       <version>${project.version}</version>
75       <classifier>features</classifier>
76       <type>xml</type>
77     </dependency>
78     <dependency>
79       <groupId>${project.groupId}</groupId>
80       <artifactId>openstack.net-virt-sfc-features</artifactId>
81       <version>${project.version}</version>
82       <classifier>features</classifier>
83       <type>xml</type>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.sfc</groupId>
87       <artifactId>features-sfc</artifactId>
88       <version>${sfc.version}</version>
89       <classifier>features</classifier>
90       <type>xml</type>
91     </dependency>
92     <dependency>
93       <groupId>${project.groupId}</groupId>
94       <artifactId>openstack.sfc-translator-impl</artifactId>
95       <version>${project.version}</version>
96     </dependency>
97     <dependency>
98       <groupId>${project.groupId}</groupId>
99       <artifactId>utils.mdsal-utils</artifactId>
100       <version>${project.version}</version>
101     </dependency>
102   </dependencies>
103
104   <!--
105       Maven Site Configuration
106
107       The following configuration is necessary for maven-site-plugin to
108       correctly identify the correct deployment path for OpenDaylight Maven
109       sites.
110   -->
111   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
112
113   <distributionManagement>
114     <site>
115       <id>opendaylight-site</id>
116       <url>${nexus.site.url}/${project.artifactId}/</url>
117     </site>
118   </distributionManagement>
119 </project>