Bump versions by 0.1.0 for next dev cycle
[lispflowmapping.git] / artifacts / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Cisco Systems, 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" 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">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.odlparent</groupId>
14     <artifactId>odlparent-lite</artifactId>
15     <version>1.8.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.lispflowmapping</groupId>
20   <artifactId>lispflowmapping-artifacts</artifactId>
21   <version>1.5.0-SNAPSHOT</version>
22   <packaging>pom</packaging>
23   <name>LISP Flow Mapping Artifacts</name>
24
25   <dependencyManagement>
26     <dependencies>
27       <dependency>
28         <groupId>${project.groupId}</groupId>
29         <artifactId>mappingservice.api</artifactId>
30         <version>${project.version}</version>
31       </dependency>
32       <dependency>
33         <groupId>${project.groupId}</groupId>
34         <artifactId>mappingservice.dsbackend</artifactId>
35         <version>${project.version}</version>
36       </dependency>
37       <dependency>
38         <groupId>${project.groupId}</groupId>
39         <artifactId>mappingservice.implementation</artifactId>
40         <version>${project.version}</version>
41       </dependency>
42       <dependency>
43         <groupId>${project.groupId}</groupId>
44         <artifactId>mappingservice.inmemorydb</artifactId>
45         <version>${project.version}</version>
46       </dependency>
47       <dependency>
48         <groupId>${project.groupId}</groupId>
49         <artifactId>mappingservice.mapcache</artifactId>
50         <version>${project.version}</version>
51       </dependency>
52       <!--
53       <dependency>
54         <groupId>${project.groupId}</groupId>
55         <artifactId>mappingservice.neutron</artifactId>
56         <version>${project.version}</version>
57       </dependency>
58       -->
59       <dependency>
60         <groupId>${project.groupId}</groupId>
61         <artifactId>mappingservice.shell</artifactId>
62         <version>${project.version}</version>
63       </dependency>
64       <dependency>
65         <groupId>${project.groupId}</groupId>
66         <artifactId>mappingservice.southbound</artifactId>
67         <version>${project.version}</version>
68       </dependency>
69       <dependency>
70         <groupId>${project.groupId}</groupId>
71         <artifactId>mappingservice.lisp-proto</artifactId>
72         <version>${project.version}</version>
73       </dependency>
74       <dependency>
75         <groupId>${project.groupId}</groupId>
76         <artifactId>lispflowmapping-ui-bundle</artifactId>
77         <version>${project.version}</version>
78       </dependency>
79       <dependency>
80         <groupId>${project.groupId}</groupId>
81         <artifactId>features-lispflowmapping</artifactId>
82         <version>${project.version}</version>
83         <classifier>features</classifier>
84         <type>xml</type>
85       </dependency>
86     </dependencies>
87   </dependencyManagement>
88
89   <!--
90       Maven Site Configuration
91
92       The following configuration is necessary for maven-site-plugin to
93       correctly identify the correct deployment path for OpenDaylight Maven
94       sites.
95   -->
96   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
97
98   <distributionManagement>
99     <site>
100       <id>opendaylight-site</id>
101       <url>${nexus.site.url}/${project.artifactId}/</url>
102     </site>
103   </distributionManagement>
104
105 </project>