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