Add coding style checks
[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   <name>LISP Flow Mapping All modules</name>
14
15   <modules>
16     <module>commons/parent</module>
17     <module>commons/build_tools</module>
18     <module>commons/unittest_tools</module>
19     <module>mappingservice</module>
20     <module>distribution</module>
21     <module>features</module>
22     <module>distribution-karaf</module>
23   </modules>
24
25   <build>
26     <pluginManagement>
27       <plugins>
28         <plugin>
29           <!-- we are overriding the default version of this plugin here... not sure why. -->
30           <groupId>org.apache.maven.plugins</groupId>
31           <artifactId>maven-dependency-plugin</artifactId>
32           <version>2.8</version>
33         </plugin>
34       </plugins>
35     </pluginManagement>
36     <plugins>
37       <plugin>
38         <!-- In this project we want to automatically sort all poms, thus we
39              add the invocation of this plugin to the root parent. Configuration is in
40              the ODL parent. -->
41         <groupId>com.google.code.sortpom</groupId>
42         <artifactId>maven-sortpom-plugin</artifactId>
43       </plugin>
44       <plugin>
45         <!-- Check for coding style violations.  Configuration in the parent pom. -->
46         <groupId>org.apache.maven.plugins</groupId>
47         <artifactId>maven-checkstyle-plugin</artifactId>
48       </plugin>
49     </plugins>
50   </build>
51
52   <repositories>
53     <!-- NOTE: The repositories and plugin repositories sections need fully
54          qualified URLs to the nexus because it has to download the parent. There
55          seems to be a bug where you need to parent before any properties can be substituted
56          in. You can override this URL by using the "mirror" section of your settings.xml
57          configuration file. See http://maven.apache.org/guides/mini/guide-mirror-settings.html -->
58     <!-- OpenDayLight Repo Mirror -->
59     <repository>
60       <releases>
61         <enabled>true</enabled>
62         <updatePolicy>never</updatePolicy>
63       </releases>
64       <snapshots>
65         <enabled>false</enabled>
66       </snapshots>
67       <id>opendaylight-mirror</id>
68       <name>opendaylight-mirror</name>
69       <url>http://nexus.opendaylight.org/content/groups/public/</url>
70     </repository>
71     <!-- OpenDayLight Snapshot artifact -->
72     <repository>
73       <releases>
74         <enabled>false</enabled>
75       </releases>
76       <snapshots>
77         <enabled>true</enabled>
78       </snapshots>
79       <id>opendaylight-snapshot</id>
80       <name>opendaylight-snapshot</name>
81       <url>http://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
82     </repository>
83     <repository>
84       <releases>
85         <enabled>true</enabled>
86       </releases>
87       <snapshots>
88         <enabled>false</enabled>
89       </snapshots>
90       <id>opendaylight-snapshot-release</id>
91       <name>opendaylight-snapshot-release</name>
92       <url>http://nexus.opendaylight.org/content/repositories/opendaylight.release/</url>
93     </repository>
94     <repository>
95       <snapshots>
96         <enabled>true</enabled>
97         <updatePolicy>never</updatePolicy>
98       </snapshots>
99       <id>maven-restlet</id>
100       <name>Public online Restlet repository</name>
101       <url>http://maven.restlet.org</url>
102     </repository>
103   </repositories>
104
105   <pluginRepositories>
106     <!-- see above note about mirrors and hard coded URLs. -->
107     <!-- OpenDayLight Repo Mirror -->
108     <pluginRepository>
109       <releases>
110         <enabled>true</enabled>
111         <updatePolicy>never</updatePolicy>
112       </releases>
113       <snapshots>
114         <enabled>false</enabled>
115       </snapshots>
116       <id>opendaylight-mirror</id>
117       <name>opendaylight-mirror</name>
118       <url>http://nexus.opendaylight.org/content/groups/public/</url>
119     </pluginRepository>
120     <!-- OpenDayLight Snapshot artifact -->
121     <pluginRepository>
122       <releases>
123         <enabled>false</enabled>
124       </releases>
125       <snapshots>
126         <enabled>true</enabled>
127       </snapshots>
128       <id>opendaylight-snapshot</id>
129       <name>opendaylight-snapshot</name>
130       <url>http://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
131     </pluginRepository>
132   </pluginRepositories>
133
134 </project>