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