Add findbugs plugin
[bgpcep.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6
7     <groupId>org.opendaylight.bgpcep</groupId>
8     <artifactId>protocol-parent</artifactId>
9     <name>OpenDaylight protocols</name>
10     <description>OpenDaylight BGP+PCEP protocol parent</description>
11     <version>0.3.0-SNAPSHOT</version>
12     <packaging>pom</packaging>
13
14     <licenses>
15         <license>
16             <name>The Eclipse Public License v1.0</name>
17             <url>http://www.eclipse.org/legal/epl-v10.html</url>
18             <distribution>repo</distribution>
19         </license>
20     </licenses>
21
22     <properties>
23         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
24         <commonscodec.version>1.7</commonscodec.version>
25         <dependency.version>2.8</dependency.version>
26         <guava.version>14.0.1</guava.version>
27         <java.version.source>1.7</java.version.source>
28         <java.version.target>1.7</java.version.target>
29         <junit.version>4.10</junit.version>
30         <logback.version>1.0.7</logback.version>
31         <maven.bundle.version>2.4.0</maven.bundle.version>
32         <maven.compiler.version>3.1</maven.compiler.version>
33         <maven.info.reports.version>2.7</maven.info.reports.version>
34         <maven.jar.version>2.4</maven.jar.version>
35         <maven.shade.version>2.1</maven.shade.version>
36         <maven.site.version>3.3</maven.site.version>
37         <mockito.version>1.9.5</mockito.version>
38         <netty.version>4.0.10.Final</netty.version>
39         <nexusproxy>http://nexus.opendaylight.org/content</nexusproxy>
40         <slf4j.version>1.7.2</slf4j.version>
41         <surefire.version>2.15</surefire.version>
42         <osgi.version>5.0.0</osgi.version>
43
44         <yangtools.version>0.5.9-SNAPSHOT</yangtools.version>
45         <controller.config.version>0.2.3-SNAPSHOT</controller.config.version>
46         <yang.binding.version>0.6.0-SNAPSHOT</yang.binding.version>
47         <ietf.types.version>2010.09.24.1</ietf.types.version>
48         <ietf.topology.version>2013.10.21.0-SNAPSHOT</ietf.topology.version>
49     </properties>
50     <prerequisites>
51         <maven>3.0.4</maven>
52     </prerequisites>
53
54     <modules>
55         <!-- Common infra -->
56         <module>concepts</module>
57         <module>framework</module>
58         <module>mockito-configuration</module>
59         <module>util</module>
60
61         <!-- Subsystems -->
62         <module>bgp</module>
63         <module>pcep</module>
64         <module>programming</module>
65         <module>rsvp</module>
66         <module>topology</module>
67
68         <!-- Integration tests -->
69         <module>integration-tests</module>
70     </modules>
71
72     <dependencyManagement>
73         <dependencies>
74             <!-- This project -->
75             <dependency>
76                 <groupId>${project.groupId}</groupId>
77                 <artifactId>concepts</artifactId>
78                 <version>${project.version}</version>
79             </dependency>
80             <dependency>
81                 <groupId>${project.groupId}</groupId>
82                 <artifactId>framework</artifactId>
83                 <version>${project.version}</version>
84             </dependency>
85             <dependency>
86                 <groupId>${project.groupId}</groupId>
87                 <artifactId>util</artifactId>
88                 <version>${project.version}</version>
89             </dependency>
90
91             <!-- Testing Dependencies -->
92             <dependency>
93                 <groupId>junit</groupId>
94                 <artifactId>junit</artifactId>
95                 <version>${junit.version}</version>
96                 <scope>test</scope>
97             </dependency>
98             <dependency>
99                 <groupId>org.mockito</groupId>
100                 <artifactId>mockito-core</artifactId>
101                 <version>${mockito.version}</version>
102                 <scope>test</scope>
103             </dependency>
104             <dependency>
105                 <groupId>${project.groupId}</groupId>
106                 <artifactId>mockito-configuration</artifactId>
107                 <version>${project.version}</version>
108                 <scope>test</scope>
109             </dependency>
110
111             <!-- Supporting Libraries -->
112             <dependency>
113                 <groupId>org.slf4j</groupId>
114                 <artifactId>slf4j-api</artifactId>
115                 <version>${slf4j.version}</version>
116             </dependency>
117             <dependency>
118                 <groupId>com.google.guava</groupId>
119                 <artifactId>guava</artifactId>
120                 <version>${guava.version}</version>
121             </dependency>
122             <dependency>
123                 <groupId>com.google.code.findbugs</groupId>
124                 <artifactId>jsr305</artifactId>
125                 <version>2.0.1</version>
126             </dependency>
127
128             <!-- Netty -->
129             <dependency>
130                 <groupId>io.netty</groupId>
131                 <artifactId>netty-buffer</artifactId>
132                 <version>${netty.version}</version>
133             </dependency>
134             <dependency>
135                 <groupId>io.netty</groupId>
136                 <artifactId>netty-codec</artifactId>
137                 <version>${netty.version}</version>
138             </dependency>
139             <dependency>
140                 <groupId>io.netty</groupId>
141                 <artifactId>netty-common</artifactId>
142                 <version>${netty.version}</version>
143             </dependency>
144             <dependency>
145                 <groupId>io.netty</groupId>
146                 <artifactId>netty-transport</artifactId>
147                 <version>${netty.version}</version>
148             </dependency>
149
150             <!-- YANG tools -->
151             <dependency>
152                 <groupId>org.opendaylight.yangtools</groupId>
153                 <artifactId>yang-binding</artifactId>
154                 <version>${yang.binding.version}</version>
155             </dependency>
156             <dependency>
157                 <groupId>org.opendaylight.yangtools</groupId>
158                 <artifactId>yang-common</artifactId>
159                 <version>${yangtools.version}</version>
160             </dependency>
161
162             <!-- Controller infrastructure -->
163             <dependency>
164                 <groupId>org.opendaylight.controller</groupId>
165                 <artifactId>config-api</artifactId>
166                 <version>${controller.config.version}</version>
167             </dependency>
168             <dependency>
169                 <groupId>org.opendaylight.controller</groupId>
170                 <artifactId>sal-binding-api</artifactId>
171                 <version>1.0-SNAPSHOT</version>
172             </dependency>
173             <dependency>
174                 <groupId>org.opendaylight.controller</groupId>
175                 <artifactId>sal-binding-config</artifactId>
176                 <version>1.0-SNAPSHOT</version>
177             </dependency>
178             <dependency>
179                 <groupId>org.opendaylight.controller</groupId>
180                 <artifactId>sal-binding-broker-impl</artifactId>
181                 <version>1.0-SNAPSHOT</version>
182                 <scope>test</scope>
183             </dependency>
184
185             <!-- OSGi -->
186             <dependency>
187                 <groupId>org.osgi</groupId>
188                 <artifactId>org.osgi.core</artifactId>
189                 <version>${osgi.version}</version>
190                 <scope>provided</scope>
191             </dependency>
192
193             <!-- Models -->
194             <dependency>
195                 <groupId>org.opendaylight.yangtools.model</groupId>
196                 <artifactId>ietf-inet-types</artifactId>
197                 <version>${ietf.types.version}</version>
198             </dependency>
199             <dependency>
200                 <groupId>org.opendaylight.yangtools.model</groupId>
201                 <artifactId>ietf-ted</artifactId>
202                 <version>${ietf.topology.version}</version>
203             </dependency>
204             <dependency>
205                 <groupId>org.opendaylight.yangtools.model</groupId>
206                 <artifactId>ietf-topology</artifactId>
207                 <version>${ietf.topology.version}</version>
208             </dependency>
209             <dependency>
210                 <groupId>org.opendaylight.yangtools.model</groupId>
211                 <artifactId>ietf-topology-isis</artifactId>
212                 <version>${ietf.topology.version}</version>
213             </dependency>
214             <dependency>
215                 <groupId>org.opendaylight.yangtools.model</groupId>
216                 <artifactId>ietf-topology-l3-unicast-igp</artifactId>
217                 <version>${ietf.topology.version}</version>
218             </dependency>
219             <dependency>
220                 <groupId>org.opendaylight.yangtools.model</groupId>
221                 <artifactId>ietf-topology-ospf</artifactId>
222                 <version>${ietf.topology.version}</version>
223             </dependency>
224         </dependencies>
225     </dependencyManagement>
226
227     <dependencies>
228         <dependency>
229             <groupId>ch.qos.logback</groupId>
230             <artifactId>logback-classic</artifactId>
231             <version>${logback.version}</version>
232             <scope>test</scope>
233         </dependency>
234     </dependencies>
235
236     <reporting>
237         <plugins>
238             <plugin>
239                 <groupId>org.apache.maven.plugins</groupId>
240                 <artifactId>maven-javadoc-plugin</artifactId>
241                 <version>2.9.1</version>
242             </plugin>
243
244             <plugin>
245                 <groupId>org.apache.maven.plugins</groupId>
246                 <artifactId>maven-project-info-reports-plugin</artifactId>
247                 <version>${maven.info.reports.version}</version>
248                 <reportSets>
249                     <reportSet>
250                         <reports>
251                             <report>dependency-info</report>
252                             <report>index</report>
253                             <report>license</report>
254                         </reports>
255                     </reportSet>
256                 </reportSets>
257             </plugin>
258             <plugin>
259                 <groupId>org.codehaus.mojo</groupId>
260                 <artifactId>findbugs-maven-plugin</artifactId>
261                 <version>2.4.0</version>
262                 <configuration>
263                     <effort>Max</effort>
264                     <threshold>Low</threshold>
265                     <goal>site</goal>
266                 </configuration>
267             </plugin>
268         </plugins>
269     </reporting>
270
271     <distributionManagement>
272         <!-- OpenDayLight Released artifact -->
273         <repository>
274             <id>opendaylight-release</id>
275             <url>${nexusproxy}/repositories/opendaylight.release/</url>
276         </repository>
277         <!-- OpenDayLight Snapshot artifact -->
278         <snapshotRepository>
279             <id>opendaylight-snapshot</id>
280             <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
281         </snapshotRepository>
282         <site>
283             <id>wiki.opendaylight.org</id>
284             <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main/site</url>
285         </site>
286     </distributionManagement>
287
288     <build>
289         <plugins>
290             <plugin>
291                 <groupId>org.apache.maven.plugins</groupId>
292                 <artifactId>maven-compiler-plugin</artifactId>
293                 <version>${maven.compiler.version}</version>
294                 <configuration>
295                     <source>${java.version.source}</source>
296                     <target>${java.version.target}</target>
297                     <testSource>${java.version.source}</testSource>
298                     <testTarget>${java.version.target}</testTarget>
299                 </configuration>
300             </plugin>
301             <plugin>
302                 <groupId>org.apache.maven.plugins</groupId>
303                 <artifactId>maven-surefire-plugin</artifactId>
304                 <version>${surefire.version}</version>
305                 <configuration>
306                     <redirectTestOutputToFile>true</redirectTestOutputToFile>
307                     <!--parallel>classes</parallel>
308                     <forkCount>1C</forkCount>
309                     <reuseForks>false</reuseForks>
310                     <perCoreThreadCount>true</perCoreThreadCount-->
311                     <threadCount>1</threadCount>
312                 </configuration>
313             </plugin>
314
315             <plugin>
316                 <groupId>org.apache.maven.plugins</groupId>
317                 <artifactId>maven-dependency-plugin</artifactId>
318                 <version>${dependency.version}</version>
319                 <configuration>
320                     <failOnWarning>true</failOnWarning>
321                     <ignoreNonCompile>true</ignoreNonCompile>
322                 </configuration>
323             </plugin>
324             <plugin>
325                 <!-- Let eclipse know about the generated sources -->
326                 <groupId>org.codehaus.mojo</groupId>
327                 <artifactId>build-helper-maven-plugin</artifactId>
328                 <version>1.8</version>
329                 <executions>
330                     <execution>
331                         <phase>generate-sources</phase>
332                         <goals>
333                             <goal>add-source</goal>
334                         </goals>
335                         <configuration>
336                             <sources>
337                                 <source>target/generated-sources/sal</source>
338                                 <source>target/generated-sources/config</source>
339                             </sources>
340                         </configuration>
341                     </execution>
342                 </executions>
343             </plugin>
344         </plugins>
345         <pluginManagement>
346             <plugins>
347                 <!--This plugin's configuration is used to store Eclipse m2e settings
348                     only. It has no influence on the Maven build itself. -->
349                 <plugin>
350                     <groupId>org.eclipse.m2e</groupId>
351                     <artifactId>lifecycle-mapping</artifactId>
352                     <version>1.0.0</version>
353                     <configuration>
354                         <lifecycleMappingMetadata>
355                             <pluginExecutions>
356                                 <pluginExecution>
357                                     <pluginExecutionFilter>
358                                         <groupId>pl.project13.maven</groupId>
359                                         <artifactId>git-commit-id-plugin</artifactId>
360                                         <versionRange>[2.1.4,)</versionRange>
361                                         <goals>
362                                             <goal>revision</goal>
363                                         </goals>
364                                     </pluginExecutionFilter>
365                                     <action>
366                                         <ignore></ignore>
367                                     </action>
368                                 </pluginExecution>
369                                 <pluginExecution>
370                                     <pluginExecutionFilter>
371                                         <groupId>org.opendaylight.yangtools</groupId>
372                                         <artifactId>yang-maven-plugin</artifactId>
373                                         <versionRange>[0.5,)</versionRange>
374                                         <goals>
375                                             <goal>generate-sources</goal>
376                                         </goals>
377                                     </pluginExecutionFilter>
378                                     <action>
379                                         <ignore></ignore>
380                                     </action>
381                                 </pluginExecution>
382                             </pluginExecutions>
383                         </lifecycleMappingMetadata>
384                     </configuration>
385                 </plugin>
386
387                 <!-- Our YANG->DTO generation plugin -->
388                 <plugin>
389                     <groupId>org.opendaylight.yangtools</groupId>
390                     <artifactId>yang-maven-plugin</artifactId>
391                     <version>${yangtools.version}</version>
392                     <executions>
393                         <execution>
394                             <goals>
395                                 <goal>generate-sources</goal>
396                             </goals>
397                             <configuration>
398                                 <yangFilesRootDir>src/main/yang</yangFilesRootDir>
399                                 <codeGenerators>
400                                     <generator>
401                                         <codeGeneratorClass>
402                                             org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl
403                                         </codeGeneratorClass>
404                                         <outputBaseDir>
405                                             target/generated-sources/sal
406                                         </outputBaseDir>
407                                     </generator>
408                                     <generator>
409                                         <codeGeneratorClass>org.opendaylight.yangtools.yang.unified.doc.generator.maven.DocumentationGeneratorImpl</codeGeneratorClass>
410                                         <outputBaseDir>target/site</outputBaseDir>
411                                     </generator>
412                                 </codeGenerators>
413                                 <inspectDependencies>true</inspectDependencies>
414                             </configuration>
415                         </execution>
416                     </executions>
417                     <dependencies>
418                         <dependency>
419                             <groupId>org.opendaylight.yangtools</groupId>
420                             <artifactId>maven-sal-api-gen-plugin</artifactId>
421                             <version>${yang.binding.version}</version>
422                             <type>jar</type>
423                         </dependency>
424                     </dependencies>
425                 </plugin>
426
427                 <!-- Maven site plugin -->
428                 <plugin>
429                     <artifactId>maven-site-plugin</artifactId>
430                     <version>${maven.site.version}</version>
431                 </plugin>
432             </plugins>
433         </pluginManagement>
434     </build>
435
436     <repositories>
437         <repository>
438             <id>opendaylight-release</id>
439             <name>opendaylight-release</name>
440             <url>${nexusproxy}/repositories/opendaylight.release/</url>
441         </repository>
442         <repository>
443             <id>opendaylight-snapshot</id>
444             <name>opendaylight-snapshot</name>
445             <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
446         </repository>
447     </repositories>
448
449     <pluginRepositories>
450         <pluginRepository>
451             <id>opendaylight-release</id>
452             <name>opendaylight-release</name>
453             <url>${nexusproxy}/repositories/opendaylight.release/</url>
454         </pluginRepository>
455         <pluginRepository>
456             <id>opendaylight-snapshot</id>
457             <name>opendaylight-snapshot</name>
458             <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
459         </pluginRepository>
460     </pluginRepositories>
461 </project>