Remove <repositories> and <pluginRepositories> sections
[lispflowmapping.git] / 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/maven-v4_0_0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.lispflowmapping</groupId>
6     <artifactId>lispflowmapping-commons</artifactId>
7     <version>1.2.0-SNAPSHOT</version>
8     <relativePath>commons/parent</relativePath>
9   </parent>
10
11   <artifactId>lispflowmapping-all</artifactId>
12   <packaging>pom</packaging>
13   <!-- Used by Sonar to set project name -->
14   <name>lispflowmapping</name>
15
16   <modules>
17     <module>commons/parent</module>
18     <module>commons/build_tools</module>
19     <module>commons/unittest_tools</module>
20     <module>mappingservice</module>
21     <module>distribution</module>
22     <module>features</module>
23     <module>distribution-karaf</module>
24   </modules>
25
26   <build>
27     <pluginManagement>
28       <plugins>
29         <plugin>
30           <!-- we are overriding the default version of this plugin here... not sure why. -->
31           <groupId>org.apache.maven.plugins</groupId>
32           <artifactId>maven-dependency-plugin</artifactId>
33           <version>2.8</version>
34         </plugin>
35       </plugins>
36     </pluginManagement>
37     <plugins>
38       <plugin>
39         <!-- In this project we want to automatically sort all poms, thus we
40              add the invocation of this plugin to the root parent. Configuration is in
41              the ODL parent. -->
42         <groupId>com.google.code.sortpom</groupId>
43         <artifactId>maven-sortpom-plugin</artifactId>
44       </plugin>
45       <plugin>
46         <!-- Check for coding style violations.  Configuration in the parent pom. -->
47         <groupId>org.apache.maven.plugins</groupId>
48         <artifactId>maven-checkstyle-plugin</artifactId>
49       </plugin>
50     </plugins>
51   </build>
52 </project>