Fix NPE triggered after disabling SG on a port
[netvirt.git] / openstack / net-virt-sfc / api / 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
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.mdsal</groupId>
14     <artifactId>binding-parent</artifactId>
15     <version>0.11.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18
19   <modelVersion>4.0.0</modelVersion>
20   <groupId>org.opendaylight.netvirt</groupId>
21   <artifactId>openstack.net-virt-sfc-api</artifactId>
22   <name>ODL :: netvirt :: ${project.artifactId}</name>
23   <version>1.5.0-SNAPSHOT</version>
24   <packaging>bundle</packaging>
25
26   <properties>
27     <sfc.project.version>0.5.0-SNAPSHOT</sfc.project.version>
28   </properties>
29
30   <dependencies>
31     <dependency>
32       <groupId>org.opendaylight.mdsal.model</groupId>
33       <artifactId>ietf-inet-types-2013-07-15</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.mdsal.model</groupId>
37       <artifactId>ietf-yang-types-20130715</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.mdsal.model</groupId>
41       <artifactId>yang-ext</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.mdsal.model</groupId>
45       <artifactId>ietf-access-control-list</artifactId>
46     </dependency>
47   </dependencies>
48
49   <build>
50     <plugins>
51       <plugin>
52         <groupId>org.apache.felix</groupId>
53         <artifactId>maven-bundle-plugin</artifactId>
54         <extensions>true</extensions>
55         <configuration>
56           <instructions>
57             <Export-Package>
58               org.opendaylight.yang.gen.v1.*,
59               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.netvirt.sfc.acl.rev150105,
60               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.netvirt.sfc.classifier.rev150105,
61               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.netvirt.sfc.classifier.rev150105.Classifiers,
62               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.netvirt.sfc.rev150105,
63             </Export-Package>
64           </instructions>
65         </configuration>
66       </plugin>
67     </plugins>
68   </build>
69
70   <!--
71       Maven Site Configuration
72
73       The following configuration is necessary for maven-site-plugin to
74       correctly identify the correct deployment path for OpenDaylight Maven
75       sites.
76   -->
77   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
78
79   <distributionManagement>
80     <site>
81       <id>opendaylight-site</id>
82       <url>${nexus.site.url}/${project.artifactId}/</url>
83     </site>
84   </distributionManagement>
85 </project>