Fix NPE triggered after disabling SG on a port
[netvirt.git] / openstack / karaf / 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 <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   <modelVersion>4.0.0</modelVersion>
13   <parent>
14     <groupId>org.opendaylight.odlparent</groupId>
15     <artifactId>karaf4-parent</artifactId>
16     <version>2.0.0</version>
17     <relativePath/>
18   </parent>
19
20   <groupId>org.opendaylight.netvirt</groupId>
21   <artifactId>karaf</artifactId>
22   <version>1.5.0-SNAPSHOT</version>
23   <name>ODL :: netvirt :: ${project.artifactId}</name>
24   <properties>
25     <!-- uncomment the next line if you want karaf to automatically load the feature -->
26     <!-- <karaf.localFeature>odl-ovsdb-openstack</karaf.localFeature> -->
27   </properties>
28   <description>The OVSDB Plugin integration project is a project for OpenDaylight that will implement the Open vSwitch Database RFC 7047 management protocol allowing the Southbound configuration of vSwitches and a network virtualization implementation.</description>
29   <licenses>
30     <license>
31       <name>Eclipse Public License v1.0</name>
32       <url>http://www.eclipse.org/legal/epl-v10.html</url>
33     </license>
34   </licenses>
35   <developers>
36     <developer>
37       <name>Sam Hague</name>
38       <email>shague@gmail.com</email>
39       <url>https://github.com/shague</url>
40     </developer>
41   </developers>
42   <scm>
43     <connection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</connection>
44     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</developerConnection>
45     <tag>HEAD</tag>
46     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
47   </scm>
48   <dependencies>
49     <dependency>
50       <!-- scope is compile so all features (there is only one) are installed
51       into startup.properties and the feature repo itself is not installed -->
52       <groupId>org.apache.karaf.features</groupId>
53       <artifactId>framework</artifactId>
54       <version>${karaf.version}</version>
55       <type>kar</type>
56       <scope>compile</scope>
57     </dependency>
58
59     <dependency>
60       <groupId>${project.groupId}</groupId>
61       <artifactId>features-netvirt</artifactId>
62       <version>${project.version}</version>
63       <classifier>features</classifier>
64       <type>xml</type>
65       <scope>runtime</scope>
66     </dependency>
67   </dependencies>
68
69   <build>
70     <plugins>
71       <!-- DO NOT deploy the karaf artifact -->
72       <plugin>
73         <groupId>org.apache.maven.plugins</groupId>
74         <artifactId>maven-deploy-plugin</artifactId>
75         <configuration>
76           <skip>true</skip>
77         </configuration>
78       </plugin>
79     </plugins>
80   </build>
81
82   <!--
83       Maven Site Configuration
84
85       The following configuration is necessary for maven-site-plugin to
86       correctly identify the correct deployment path for OpenDaylight Maven
87       sites.
88   -->
89   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
90
91   <distributionManagement>
92     <site>
93       <id>opendaylight-site</id>
94       <url>${nexus.site.url}/${project.artifactId}/</url>
95     </site>
96   </distributionManagement>
97 </project>