Bump versions by 0.1.0 for next dev cycle
[lispflowmapping.git] / mappingservice / dsbackend / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2016 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
10 <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">
11   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.lispflowmapping</groupId>
15     <artifactId>mappingservice-parent</artifactId>
16     <version>1.5.0-SNAPSHOT</version>
17   </parent>
18
19   <artifactId>mappingservice.dsbackend</artifactId>
20   <packaging>bundle</packaging>
21   <name>Mapping Service DataStore BackEnd</name>
22
23   <dependencies>
24     <dependency>
25       <groupId>${project.groupId}</groupId>
26       <artifactId>mappingservice.api</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>${project.groupId}</groupId>
30       <artifactId>mappingservice.lisp-proto</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>junit-addons</groupId>
34       <artifactId>junit-addons</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>sal-binding-api</artifactId>
39       <version>1.5.0-SNAPSHOT</version>
40     </dependency>
41     <dependency>
42       <groupId>org.powermock</groupId>
43       <artifactId>powermock-api-mockito</artifactId>
44       <scope>test</scope>
45     </dependency>
46     <dependency>
47       <groupId>org.powermock</groupId>
48       <artifactId>powermock-module-junit4</artifactId>
49       <scope>test</scope>
50     </dependency>
51   </dependencies>
52
53   <build>
54     <pluginManagement>
55       <plugins>
56         <plugin>
57           <!-- Enforce odlparent checkstyle -->
58           <groupId>org.apache.maven.plugins</groupId>
59           <artifactId>maven-checkstyle-plugin</artifactId>
60           <configuration>
61             <includeTestSourceDirectory>true</includeTestSourceDirectory>
62             <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
63           </configuration>
64         </plugin>
65       </plugins>
66     </pluginManagement>
67   </build>
68
69   <!--
70       Maven Site Configuration
71
72       The following configuration is necessary for maven-site-plugin to
73       correctly identify the correct deployment path for OpenDaylight Maven
74       sites.
75   -->
76   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
77
78   <distributionManagement>
79     <site>
80       <id>opendaylight-site</id>
81       <url>${nexus.site.url}/${project.artifactId}/</url>
82     </site>
83   </distributionManagement>
84
85 </project>