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