Get rid of some Eclipse warnings
[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.8.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.lispflowmapping</groupId>
20   <artifactId>mappingservice.lisp-proto</artifactId>
21   <version>1.3.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.apache.commons</groupId>
36       <artifactId>commons-lang3</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.lispflowmapping</groupId>
40       <artifactId>common.unittest.tools</artifactId>
41       <version>${project.version}</version>
42     </dependency>
43     <dependency>
44       <groupId>junit-addons</groupId>
45       <artifactId>junit-addons</artifactId>
46       <version>1.4</version>
47       <scope>test</scope>
48     </dependency>
49   </dependencies>
50
51   <build>
52     <pluginManagement>
53       <plugins>
54         <plugin>
55           <!-- Temporarily override the odlparent checkstyle configuration.
56                We want to enforce some simple rules and add more as we clean up code -->
57           <artifactId>maven-checkstyle-plugin</artifactId>
58           <configuration>
59             <configLocation>checkstyle/java_rules.xml</configLocation>
60             <includeTestSourceDirectory>true</includeTestSourceDirectory>
61             <excludes>org/opendaylight/yang/gen/**,**/config/yang/**</excludes>
62             <failsOnError>true</failsOnError>
63             <consoleOutput>true</consoleOutput>
64           </configuration>
65           <dependencies>
66             <dependency>
67               <groupId>org.opendaylight.lispflowmapping</groupId>
68               <artifactId>common.build.tools</artifactId>
69               <version>${project.version}</version>
70             </dependency>
71           </dependencies>
72           <executions>
73             <execution>
74               <goals>
75                 <goal>check</goal>
76               </goals>
77               <phase>process-sources</phase>
78             </execution>
79           </executions>
80         </plugin>
81       </plugins>
82     </pluginManagement>
83   </build>
84 </project>