Migration to use MD-SAL Project
[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.controller</groupId>
7     <artifactId>config-parent</artifactId>
8     <version>0.4.0-SNAPSHOT</version>
9     <relativePath/>
10   </parent>
11
12   <groupId>org.opendaylight.lispflowmapping</groupId>
13   <artifactId>mappingservice-parent</artifactId>
14   <version>1.3.0-SNAPSHOT</version>
15   <packaging>pom</packaging>
16   <name>Mapping Service Parent POM</name>
17
18   <modules>
19     <module>lisp-proto</module>
20     <module>api</module>
21     <module>config</module>
22     <module>inmemorydb</module>
23     <module>implementation</module>
24     <module>southbound</module>
25     <module>neutron</module>
26     <module>shell</module>
27   </modules>
28
29   <dependencyManagement>
30     <dependencies>
31       <dependency>
32         <groupId>org.opendaylight.mdsal</groupId>
33         <artifactId>mdsal-artifacts</artifactId>
34         <version>2.0.0-SNAPSHOT</version>
35         <type>pom</type>
36         <scope>import</scope>
37       </dependency>
38       <dependency>
39         <groupId>org.opendaylight.mdsal.model</groupId>
40         <artifactId>mdsal-model-artifacts</artifactId>
41         <version>0.8.0-SNAPSHOT</version>
42         <type>pom</type>
43         <scope>import</scope>
44       </dependency>
45       <dependency>
46         <groupId>${project.groupId}</groupId>
47         <artifactId>lispflowmapping-artifacts</artifactId>
48         <version>${project.version}</version>
49         <type>pom</type>
50         <scope>import</scope>
51       </dependency>
52       <dependency>
53         <groupId>${project.groupId}</groupId>
54         <artifactId>common.unittest.tools</artifactId>
55         <version>${project.version}</version>
56       </dependency>
57       <dependency>
58         <groupId>junit-addons</groupId>
59         <artifactId>junit-addons</artifactId>
60         <version>1.4</version>
61         <scope>test</scope>
62       </dependency>
63       <!--
64       <dependency>
65         <groupId>org.jmock</groupId>
66         <artifactId>jmock</artifactId>
67         <version>2.6.0</version>
68         <scope>test</scope>
69       </dependency>
70       -->
71       <dependency>
72         <groupId>org.opendaylight.neutron</groupId>
73         <artifactId>neutron-spi</artifactId>
74         <version>0.6.0-SNAPSHOT</version>
75       </dependency>
76       <dependency>
77         <groupId>org.opendaylight.controller</groupId>
78         <artifactId>sal</artifactId>
79         <version>0.10.0-SNAPSHOT</version>
80       </dependency>
81     </dependencies>
82   </dependencyManagement>
83
84   <build>
85     <pluginManagement>
86       <plugins>
87         <plugin>
88           <!-- Temporarily override the odlparent checkstyle configuration.
89                We want to enforce some simple rules and add more as we clean up code -->
90           <artifactId>maven-checkstyle-plugin</artifactId>
91           <configuration>
92             <configLocation>checkstyle/java_rules.xml</configLocation>
93             <excludes>org/opendaylight/yang/gen/**,**/config/yang/**</excludes>
94             <failsOnError>true</failsOnError>
95             <consoleOutput>true</consoleOutput>
96           </configuration>
97           <dependencies>
98             <dependency>
99               <groupId>org.opendaylight.lispflowmapping</groupId>
100               <artifactId>common.build.tools</artifactId>
101               <version>${project.version}</version>
102             </dependency>
103           </dependencies>
104           <executions>
105             <execution>
106               <goals>
107                 <goal>check</goal>
108               </goals>
109               <phase>process-sources</phase>
110             </execution>
111           </executions>
112         </plugin>
113       </plugins>
114     </pluginManagement>
115   </build>
116 </project>