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