Bump versions by x.(y+1).z for next dev cycle
[lispflowmapping.git] / mappingservice / shell / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4
5   <parent>
6     <groupId>org.opendaylight.lispflowmapping</groupId>
7     <artifactId>mappingservice-parent</artifactId>
8     <version>1.6.0-SNAPSHOT</version>
9   </parent>
10
11   <artifactId>mappingservice.shell</artifactId>
12   <packaging>bundle</packaging>
13   <!-- <name> formatting is used by autorelease to parse and notify projects on
14        build failure. Please do not modify this unless you have a good reason. -->
15   <name>ODL :: lispflowmapping :: ${project.artifactId}</name>
16
17   <dependencies>
18     <dependency>
19       <groupId>org.osgi</groupId>
20       <artifactId>org.osgi.core</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>org.apache.karaf.shell</groupId>
24       <artifactId>org.apache.karaf.shell.console</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.lispflowmapping</groupId>
28       <artifactId>mappingservice.api</artifactId>
29     </dependency>
30   </dependencies>
31
32   <build>
33     <plugins>
34       <plugin>
35         <groupId>org.apache.felix</groupId>
36         <artifactId>maven-bundle-plugin</artifactId>
37         <extensions>true</extensions>
38         <configuration>
39           <instructions>
40             <Import-Package>org.apache.karaf.shell.commands;version="[3.0,5)",
41               org.apache.karaf.shell.console;version="[3.0,5)",
42               org.opendaylight.lispflowmapping.interfaces.mappingservice</Import-Package>
43           </instructions>
44         </configuration>
45       </plugin>
46     </plugins>
47   </build>
48
49   <!--
50       Maven Site Configuration
51
52       The following configuration is necessary for maven-site-plugin to
53       correctly identify the correct deployment path for OpenDaylight Maven
54       sites.
55   -->
56   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
57
58   <distributionManagement>
59     <site>
60       <id>opendaylight-site</id>
61       <url>${nexus.site.url}/${project.artifactId}/</url>
62     </site>
63   </distributionManagement>
64
65 </project>