Bump versions by 0.1.0 for next dev cycle
[lispflowmapping.git] / mappingservice / lisp-proto / 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.mdsal</groupId>
14     <artifactId>binding-parent</artifactId>
15     <version>0.9.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.lispflowmapping</groupId>
20   <artifactId>mappingservice.lisp-proto</artifactId>
21   <version>1.4.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23   <name>Mapping Service LISP Protocol</name>
24
25   <dependencies>
26     <dependency>
27       <groupId>org.opendaylight.mdsal.model</groupId>
28       <artifactId>ietf-inet-types</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.mdsal.model</groupId>
32       <artifactId>ietf-yang-types</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.mdsal.model</groupId>
36       <artifactId>iana-afn-safi</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.apache.commons</groupId>
40       <artifactId>commons-lang3</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.lispflowmapping</groupId>
44       <artifactId>common.unittest.tools</artifactId>
45       <version>${project.version}</version>
46     </dependency>
47     <dependency>
48       <groupId>junit-addons</groupId>
49       <artifactId>junit-addons</artifactId>
50       <version>1.4</version>
51       <scope>test</scope>
52     </dependency>
53   </dependencies>
54
55   <build>
56     <pluginManagement>
57       <plugins>
58         <plugin>
59           <!-- Temporarily override the odlparent checkstyle configuration.
60                We want to enforce some simple rules and add more as we clean up code -->
61           <artifactId>maven-checkstyle-plugin</artifactId>
62           <configuration>
63             <configLocation>checkstyle/java_rules.xml</configLocation>
64             <includeTestSourceDirectory>true</includeTestSourceDirectory>
65             <excludes>org/opendaylight/yang/gen/**,**/config/yang/**</excludes>
66             <failsOnError>true</failsOnError>
67             <consoleOutput>true</consoleOutput>
68           </configuration>
69           <dependencies>
70             <dependency>
71               <groupId>org.opendaylight.lispflowmapping</groupId>
72               <artifactId>common.build.tools</artifactId>
73               <version>${project.version}</version>
74             </dependency>
75           </dependencies>
76           <executions>
77             <execution>
78               <goals>
79                 <goal>check</goal>
80               </goals>
81               <phase>process-sources</phase>
82             </execution>
83           </executions>
84         </plugin>
85       </plugins>
86     </pluginManagement>
87   </build>
88 </project>