Drop Maven prerequisite
[netvirt.git] / openstack / net-virt-sfc / features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2015 Red Hat, 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 INTERNAL
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.net-virt-sfc-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     <controller.mdsal.version>1.5.0-SNAPSHOT</controller.mdsal.version>
26     <dlux.version>0.5.0-SNAPSHOT</dlux.version>
27     <mdsal.model.version>0.10.0-SNAPSHOT</mdsal.model.version>
28     <openflowplugin.version>0.4.0-SNAPSHOT</openflowplugin.version>
29     <ovsdb.version>1.4.0-SNAPSHOT</ovsdb.version>
30     <restconf.version>1.5.0-SNAPSHOT</restconf.version>
31     <sfc.version>0.4.0-SNAPSHOT</sfc.version>
32   </properties>
33   <dependencies>
34     <dependency>
35       <groupId>org.opendaylight.dlux</groupId>
36       <artifactId>features-dlux</artifactId>
37       <classifier>features</classifier>
38       <version>${dlux.version}</version>
39       <type>xml</type>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>features-mdsal</artifactId>
44       <version>${controller.mdsal.version}</version>
45       <classifier>features</classifier>
46       <type>xml</type>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.mdsal.model</groupId>
50       <artifactId>features-mdsal-model</artifactId>
51       <version>${mdsal.model.version}</version>
52       <classifier>features</classifier>
53       <type>xml</type>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.netconf</groupId>
57       <artifactId>features-restconf</artifactId>
58       <version>${restconf.version}</version>
59       <classifier>features</classifier>
60       <type>xml</type>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.openflowplugin</groupId>
64       <artifactId>features-openflowplugin</artifactId>
65       <version>${openflowplugin.version}</version>
66       <classifier>features</classifier>
67       <type>xml</type>
68     </dependency>
69     <dependency>
70       <groupId>${project.groupId}</groupId>
71       <artifactId>features-netvirt</artifactId>
72       <version>${project.version}</version>
73       <classifier>features</classifier>
74       <type>xml</type>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.ovsdb</groupId>
78       <artifactId>southbound-features</artifactId>
79       <version>${ovsdb.version}</version>
80       <classifier>features</classifier>
81       <type>xml</type>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.openflowplugin</groupId>
85       <artifactId>features-openflowplugin-extension</artifactId>
86       <version>${openflowplugin.version}</version>
87       <classifier>features</classifier>
88       <type>xml</type>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.sfc</groupId>
92       <artifactId>features-sfc</artifactId>
93       <version>${sfc.version}</version>
94       <classifier>features</classifier>
95       <type>xml</type>
96     </dependency>
97     <dependency>
98       <groupId>${project.groupId}</groupId>
99       <artifactId>openstack.net-virt-sfc-impl</artifactId>
100       <version>${project.version}</version>
101     </dependency>
102     <dependency>
103       <groupId>${project.groupId}</groupId>
104       <artifactId>openstack.net-virt-sfc-api</artifactId>
105       <version>${project.version}</version>
106     </dependency>
107     <dependency>
108       <groupId>${project.groupId}</groupId>
109       <artifactId>utils.mdsal-utils</artifactId>
110       <version>${project.version}</version>
111     </dependency>
112     <dependency>
113       <groupId>${project.groupId}</groupId>
114       <artifactId>utils.mdsal-openflow</artifactId>
115       <version>${project.version}</version>
116     </dependency>
117     <dependency>
118       <groupId>${project.groupId}</groupId>
119       <artifactId>utils.servicehelper</artifactId>
120       <version>${project.version}</version>
121     </dependency>
122     <dependency>
123       <groupId>${project.groupId}</groupId>
124       <artifactId>utils.netvirt-it-utils</artifactId>
125       <version>${project.version}</version>
126       <scope>test</scope>
127     </dependency>
128     <dependency>
129       <groupId>org.opendaylight.ovsdb</groupId>
130       <artifactId>utils.ovsdb-it-utils</artifactId>
131       <version>${ovsdb.version}</version>
132       <scope>test</scope>
133     </dependency>
134     <dependency>
135       <groupId>org.opendaylight.ovsdb</groupId>
136       <artifactId>utils.mdsal-utils</artifactId>
137       <version>${ovsdb.version}</version>
138     </dependency>
139     <dependency>
140       <groupId>org.opendaylight.ovsdb</groupId>
141       <artifactId>utils.southbound-utils</artifactId>
142       <version>${ovsdb.version}</version>
143     </dependency>
144   </dependencies>
145
146   <!--
147       Maven Site Configuration
148
149       The following configuration is necessary for maven-site-plugin to
150       correctly identify the correct deployment path for OpenDaylight Maven
151       sites.
152   -->
153   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
154
155   <distributionManagement>
156     <site>
157       <id>opendaylight-site</id>
158       <url>${nexus.site.url}/${project.artifactId}/</url>
159     </site>
160   </distributionManagement>
161 </project>