Bump versions by x.(y+1).z for next dev cycle
[netvirt.git] / vpnservice / neutronvpn / neutronvpn-shell / 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
12     <parent>
13         <groupId>org.opendaylight.netvirt</groupId>
14         <artifactId>binding-parent</artifactId>
15         <version>0.5.0-SNAPSHOT</version>
16         <relativePath>../../commons/binding-parent</relativePath>
17     </parent>
18
19     <modelVersion>4.0.0</modelVersion>
20     <artifactId>neutronvpn-shell</artifactId>
21     <name>ODL :: netvirt :: ${project.artifactId}</name>
22     <packaging>bundle</packaging>
23     <dependencies>
24         <dependency>
25             <groupId>${project.groupId}</groupId>
26             <artifactId>neutronvpn-api</artifactId>
27             <version>${vpnservices.version}</version>
28         </dependency>
29         <dependency>
30             <groupId>${project.groupId}</groupId>
31             <artifactId>vpnmanager-api</artifactId>
32             <version>${vpnservices.version}</version>
33         </dependency>
34         <dependency>
35             <groupId>org.apache.karaf.shell</groupId>
36             <artifactId>org.apache.karaf.shell.console</artifactId>
37             <scope>provided</scope>
38         </dependency>
39     </dependencies>
40
41     <build>
42         <plugins>
43             <plugin>
44                 <groupId>org.apache.felix</groupId>
45                 <artifactId>maven-bundle-plugin</artifactId>
46                 <extensions>true</extensions>
47                 <configuration>
48                     <instructions>
49                         <!-- This bundle works with Karaf 3 and 4.0 -->
50                         <Import-Package>
51                             org.apache.karaf.shell.commands;version="[3.0.0,4.1)",
52                             org.apache.karaf.shell.console;version="[3.0.0,4.1)",
53                             *
54                         </Import-Package>
55                     </instructions>
56                 </configuration>
57             </plugin>
58         </plugins>
59     </build>
60
61     <!--
62         Maven Site Configuration
63
64         The following configuration is necessary for maven-site-plugin to
65         correctly identify the correct deployment path for OpenDaylight Maven
66         sites.
67     -->
68     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
69
70     <distributionManagement>
71         <site>
72             <id>opendaylight-site</id>
73             <url>${nexus.site.url}/${project.artifactId}/</url>
74         </site>
75     </distributionManagement>
76 </project>