73c5d19cdbe6071bdc94b2de7c84c84a8cc049cb
[netvirt.git] / vpnservice / neutronvpn / neutronvpn-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2016 Ericsson India Global Services Pvt Ltd. 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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11     <parent>
12         <groupId>org.opendaylight.netvirt</groupId>
13         <artifactId>binding-parent</artifactId>
14         <version>0.6.0-SNAPSHOT</version>
15         <relativePath>../../commons/binding-parent</relativePath>
16     </parent>
17
18     <modelVersion>4.0.0</modelVersion>
19     <artifactId>neutronvpn-api</artifactId>
20     <name>ODL :: netvirt :: ${project.artifactId}</name>
21     <packaging>bundle</packaging>
22
23     <dependencies>
24         <dependency>
25             <groupId>org.opendaylight.mdsal</groupId>
26             <artifactId>yang-binding</artifactId>
27             <version>${mdsal.model.version}</version>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.yangtools</groupId>
31             <artifactId>yang-common</artifactId>
32             <version>${yangtools.version}</version>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.neutron</groupId>
36             <artifactId>model</artifactId>
37             <version>${neutron.version}</version>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.mdsal.model</groupId>
41             <artifactId>ietf-yang-types-20130715</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.genius</groupId>
45             <artifactId>mdsalutil-api</artifactId>
46             <version>${genius.version}</version>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.controller</groupId>
50             <artifactId>sal-binding-api</artifactId>
51             <version>${controller.mdsal.version}</version>
52         </dependency>
53     </dependencies>
54
55     <!--
56         Maven Site Configuration
57
58         The following configuration is necessary for maven-site-plugin to
59         correctly identify the correct deployment path for OpenDaylight Maven
60         sites.
61     -->
62     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
63
64     <distributionManagement>
65         <site>
66             <id>opendaylight-site</id>
67             <url>${nexus.site.url}/${project.artifactId}/</url>
68         </site>
69     </distributionManagement>
70 </project>