Fix version warning
[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>config-parent</artifactId>
14         <version>0.4.0-SNAPSHOT</version>
15         <relativePath>../../commons/config-parent</relativePath>
16     </parent>
17
18     <modelVersion>4.0.0</modelVersion>
19     <artifactId>neutronvpn-api</artifactId>
20     <packaging>bundle</packaging>
21
22     <dependencies>
23         <dependency>
24             <groupId>org.opendaylight.mdsal</groupId>
25             <artifactId>yang-binding</artifactId>
26             <version>${mdsal.model.version}</version>
27         </dependency>
28         <dependency>
29             <groupId>org.opendaylight.yangtools</groupId>
30             <artifactId>yang-common</artifactId>
31             <version>${yangtools.version}</version>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.neutron</groupId>
35             <artifactId>model</artifactId>
36             <version>${neutron.version}</version>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.mdsal.model</groupId>
40             <artifactId>ietf-yang-types-20130715</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.genius</groupId>
44             <artifactId>mdsalutil-api</artifactId>
45             <version>${genius.version}</version>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.controller</groupId>
49             <artifactId>config-api</artifactId>
50         </dependency>
51     </dependencies>
52
53     <!--
54         Maven Site Configuration
55
56         The following configuration is necessary for maven-site-plugin to
57         correctly identify the correct deployment path for OpenDaylight Maven
58         sites.
59     -->
60     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
61
62     <distributionManagement>
63         <site>
64             <id>opendaylight-site</id>
65             <url>${nexus.site.url}/${project.artifactId}/</url>
66         </site>
67     </distributionManagement>
68 </project>