2cafe5f0a352b67bd949729bcb1114392aa46d40
[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
5   <parent>
6     <groupId>org.opendaylight.lispflowmapping</groupId>
7     <artifactId>lispflowmapping-all</artifactId>
8     <version>1.3.0-SNAPSHOT</version>
9   </parent>
10
11   <artifactId>mappingservice-parent</artifactId>
12   <packaging>pom</packaging>
13   <name>LISP Flow Mapping Parent POM</name>
14
15   <modules>
16     <module>yangmodel</module>
17     <module>api</module>
18     <module>config</module>
19     <module>clusterdao</module>
20     <module>implementation</module>
21     <module>southbound</module>
22     <module>neutron</module>
23     <module>netconf</module>
24     <module>shell</module>
25     <!-- <module>integrationtest</module> -->
26   </modules>
27
28   <dependencies>
29     <dependency>
30       <groupId>${project.groupId}</groupId>
31       <artifactId>common.unittest.tools</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>junit</groupId>
35       <artifactId>junit</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>junit-addons</groupId>
39       <artifactId>junit-addons</artifactId>
40       <scope>test</scope>
41     </dependency>
42     <dependency>
43       <groupId>org.hamcrest</groupId>
44       <artifactId>hamcrest-core</artifactId>
45       <scope>test</scope>
46     </dependency>
47     <dependency>
48       <groupId>org.jmock</groupId>
49       <artifactId>jmock-junit4</artifactId>
50       <scope>test</scope>
51     </dependency>
52     <dependency>
53       <groupId>org.jmock</groupId>
54       <artifactId>jmock-legacy</artifactId>
55       <scope>test</scope>
56     </dependency>
57   </dependencies>
58
59   <build>
60     <pluginManagement>
61       <plugins>
62         <plugin>
63           <!-- Temporarily override the odlparent checkstyle configuration.
64                We want to enforce some simple rules and add more as we clean up code -->
65           <artifactId>maven-checkstyle-plugin</artifactId>
66           <configuration>
67             <configLocation>checkstyle/java_rules.xml</configLocation>
68             <excludes>org/opendaylight/yang/gen/**,**/config/yang/**</excludes>
69             <failsOnError>true</failsOnError>
70             <consoleOutput>true</consoleOutput>
71           </configuration>
72           <dependencies>
73             <dependency>
74               <groupId>org.opendaylight.lispflowmapping</groupId>
75               <artifactId>common.build.tools</artifactId>
76               <version>${project.version}</version>
77             </dependency>
78           </dependencies>
79           <executions>
80             <execution>
81               <goals>
82                 <goal>check</goal>
83               </goals>
84               <phase>process-sources</phase>
85             </execution>
86           </executions>
87         </plugin>
88       </plugins>
89     </pluginManagement>
90   </build>
91 </project>