translator: remove dependency of neutron.spi
[netvirt.git] / utils / neutron-utils / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 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
8 -->
9
10 <project xmlns="http://maven.apache.org/POM/4.0.0"
11          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13     <modelVersion>4.0.0</modelVersion>
14
15     <parent>
16       <groupId>org.opendaylight.controller</groupId>
17       <artifactId>config-parent</artifactId>
18       <version>0.5.0-SNAPSHOT</version>
19       <relativePath/>
20     </parent>
21
22     <groupId>org.opendaylight.netvirt</groupId>
23     <artifactId>utils.neutron-utils</artifactId>
24     <version>1.3.0-SNAPSHOT</version>
25     <packaging>bundle</packaging>
26
27     <properties>
28         <neutron.version>0.7.0-SNAPSHOT</neutron.version>
29     </properties>
30
31     <dependencies>
32     <!-- project specific dependencies -->
33         <dependency>
34             <groupId>${project.groupId}</groupId>
35             <artifactId>utils.mdsal-utils</artifactId>
36             <version>${project.version}</version>
37         </dependency>
38         <dependency>
39             <groupId>${project.groupId}</groupId>
40             <artifactId>utils.servicehelper</artifactId>
41             <version>${project.version}</version>
42         </dependency>
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>openstack.net-virt</artifactId>
46             <version>${project.version}</version>
47         </dependency>
48     <!-- neutron dependencies -->
49         <dependency>
50             <groupId>org.opendaylight.neutron</groupId>
51             <artifactId>model</artifactId>
52             <version>0.7.0-SNAPSHOT</version>
53         </dependency>
54     </dependencies>
55
56     <!--
57         Maven Site Configuration
58
59         The following configuration is necessary for maven-site-plugin to
60         correctly identify the correct deployment path for OpenDaylight Maven
61         sites.
62     -->
63     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
64
65     <distributionManagement>
66         <site>
67             <id>opendaylight-site</id>
68             <url>${nexus.site.url}/${project.artifactId}/</url>
69         </site>
70     </distributionManagement>
71 </project>