Fix NPE triggered after disabling SG on a port
[netvirt.git] / openstack / 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.7.0-SNAPSHOT</version>
19       <relativePath/>
20     </parent>
21
22     <groupId>org.opendaylight.netvirt</groupId>
23     <artifactId>utils.neutron-utils</artifactId>
24     <version>1.5.0-SNAPSHOT</version>
25     <name>ODL :: netvirt :: ${project.artifactId}</name>
26     <packaging>bundle</packaging>
27
28     <properties>
29         <neutron.version>0.9.0-SNAPSHOT</neutron.version>
30     </properties>
31
32     <dependencies>
33     <!-- project specific dependencies -->
34         <dependency>
35             <groupId>${project.groupId}</groupId>
36             <artifactId>utils.mdsal-utils</artifactId>
37             <version>${project.version}</version>
38         </dependency>
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>utils.servicehelper</artifactId>
42             <version>${project.version}</version>
43         </dependency>
44         <dependency>
45             <groupId>${project.groupId}</groupId>
46             <artifactId>openstack.net-virt</artifactId>
47             <version>${project.version}</version>
48         </dependency>
49     <!-- neutron dependencies -->
50         <dependency>
51             <groupId>org.opendaylight.neutron</groupId>
52             <artifactId>model</artifactId>
53             <version>0.9.0-SNAPSHOT</version>
54         </dependency>
55     </dependencies>
56
57     <!--
58         Maven Site Configuration
59
60         The following configuration is necessary for maven-site-plugin to
61         correctly identify the correct deployment path for OpenDaylight Maven
62         sites.
63     -->
64     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
65
66     <distributionManagement>
67         <site>
68             <id>opendaylight-site</id>
69             <url>${nexus.site.url}/${project.artifactId}/</url>
70         </site>
71     </distributionManagement>
72 </project>