Fix NPE triggered after disabling SG on a port
[netvirt.git] / openstack / utils / mdsal-utils / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5   <modelVersion>4.0.0</modelVersion>
6   <parent>
7     <groupId>org.opendaylight.controller</groupId>
8     <artifactId>config-parent</artifactId>
9     <version>0.7.0-SNAPSHOT</version>
10     <relativePath/>
11   </parent>
12
13   <groupId>org.opendaylight.netvirt</groupId>
14   <artifactId>utils.mdsal-utils</artifactId>
15   <name>ODL :: netvirt :: ${project.artifactId}</name>
16   <version>1.5.0-SNAPSHOT</version>
17   <packaging>bundle</packaging>
18
19   <developers>
20     <developer>
21       <name>Anil Vishnoi</name>
22       <email>vishnoianil@gmail.com</email>
23       <url>https://github.com/vishnoianil</url>
24     </developer>
25   </developers>
26   <scm>
27     <connection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</connection>
28     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</developerConnection>
29     <tag>HEAD</tag>
30     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
31   </scm>
32
33   <dependencies>
34     <dependency>
35       <groupId>org.opendaylight.controller</groupId>
36       <artifactId>sal-binding-api</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>junit</groupId>
40       <artifactId>junit</artifactId>
41       <scope>test</scope>
42     </dependency>
43     <dependency>
44       <groupId>org.mockito</groupId>
45       <artifactId>mockito-core</artifactId>
46       <scope>test</scope>
47     </dependency>
48   </dependencies>
49
50   <build>
51     <plugins>
52       <plugin>
53         <groupId>org.apache.felix</groupId>
54         <artifactId>maven-bundle-plugin</artifactId>
55         <extensions>true</extensions>
56         <configuration>
57           <instructions>
58             <Export-Package>
59               org.opendaylight.netvirt.utils.mdsal.utils
60             </Export-Package>
61           </instructions>
62         </configuration>
63       </plugin>
64     </plugins>
65   </build>
66
67   <!--
68       Maven Site Configuration
69
70       The following configuration is necessary for maven-site-plugin to
71       correctly identify the correct deployment path for OpenDaylight Maven
72       sites.
73   -->
74   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
75
76   <distributionManagement>
77     <site>
78       <id>opendaylight-site</id>
79       <url>${nexus.site.url}/${project.artifactId}/</url>
80     </site>
81   </distributionManagement>
82 </project>