Beryllium version bump
[lispflowmapping.git] / mappingservice / 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   <parent>
5     <groupId>org.opendaylight.lispflowmapping</groupId>
6     <artifactId>lispflowmapping-all</artifactId>
7     <version>1.3.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>mappingservice-parent</artifactId>
10   <packaging>pom</packaging>
11   <name>LISP Flow Mapping Parent POM</name>
12   <modules>
13     <module>yangmodel</module>
14     <module>api</module>
15     <module>config</module>
16     <module>clusterdao</module>
17     <module>implementation</module>
18     <module>southbound</module>
19     <module>northbound</module>
20     <module>neutron</module>
21     <module>netconf</module>
22     <module>shell</module>
23     <module>integrationtest</module>
24   </modules>
25   <dependencies>
26     <dependency>
27       <groupId>junit</groupId>
28       <artifactId>junit</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.lispflowmapping</groupId>
32       <artifactId>common.unittest.tools</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>junit-addons</groupId>
36       <artifactId>junit-addons</artifactId>
37       <scope>test</scope>
38     </dependency>
39     <dependency>
40       <groupId>org.hamcrest</groupId>
41       <artifactId>hamcrest-core</artifactId>
42       <scope>test</scope>
43     </dependency>
44     <dependency>
45       <groupId>org.jmock</groupId>
46       <artifactId>jmock-junit4</artifactId>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.jmock</groupId>
51       <artifactId>jmock-legacy</artifactId>
52       <scope>test</scope>
53     </dependency>
54   </dependencies>
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             <excludes>org/opendaylight/yang/gen/**,**/config/yang/**</excludes>
65             <failsOnError>true</failsOnError>
66             <consoleOutput>true</consoleOutput>
67           </configuration>
68           <dependencies>
69             <dependency>
70               <groupId>org.opendaylight.lispflowmapping</groupId>
71               <artifactId>common.build.tools</artifactId>
72               <version>${project.version}</version>
73             </dependency>
74           </dependencies>
75           <executions>
76             <execution>
77               <goals>
78                 <goal>check</goal>
79               </goals>
80               <phase>process-sources</phase>
81             </execution>
82           </executions>
83         </plugin>
84       </plugins>
85     </pluginManagement>
86   </build>
87 </project>