Merge "Add ODL Checkstyle"
[odlparent.git] / odlparent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=2 tabstop=2: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11
12   <modelVersion>4.0.0</modelVersion>
13   <groupId>org.opendaylight.odlparent</groupId>
14   <artifactId>odlparent</artifactId>
15   <version>1.5.0-SNAPSHOT</version>
16   <packaging>pom</packaging>
17   <prerequisites>
18     <maven>3.0.4</maven>
19   </prerequisites>
20   <scm>
21     <connection>scm:git:ssh://git.opendaylight.org:29418/odlparent.git</connection>
22     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/odlparent.git</developerConnection>
23     <tag>HEAD</tag>
24     <url>https://wiki.opendaylight.org/view/ODL_Root_Parent:Main</url>
25   </scm>
26   <distributionManagement>
27     <!-- OpenDayLight Released artifact -->
28     <repository>
29       <id>opendaylight-release</id>
30       <url>${nexusproxy}/repositories/opendaylight.release/</url>
31     </repository>
32     <!-- OpenDayLight Snapshot artifact -->
33     <snapshotRepository>
34       <id>opendaylight-snapshot</id>
35       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
36     </snapshotRepository>
37     <site>
38       <id>${project.artifactId}-site</id>
39       <url>./</url>
40     </site>
41   </distributionManagement>
42   <properties>
43     <nexusproxy>http://nexus.opendaylight.org/content</nexusproxy>
44     <nexus.repository.release>opendaylight.release</nexus.repository.release>
45     <nexus.repository.snapshot>opendaylight.snapshot</nexus.repository.snapshot>
46     <nexus.repository.snapshot>opendaylight.snapshot</nexus.repository.snapshot>
47
48     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
49     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
50
51     <!-- Java Versions -->
52     <!-- FIXME: confirm these two are picked by maven-compiler-plugin -->
53     <maven.compiler.source>1.7</maven.compiler.source>
54     <maven.compiler.target>1.7</maven.compiler.target>
55     <java.version.source>${maven.compiler.source}</java.version.source>
56     <java.version.target>${maven.compiler.target}</java.version.target>
57
58     <!-- Maven plugin versions, in the 'canonical' format -->
59     <maven.antrun.plugin.version>1.7</maven.antrun.plugin.version>
60     <maven.bundle.version>2.5.3</maven.bundle.version>
61     <maven.clean.plugin.version>2.6.1</maven.clean.plugin.version>
62     <maven.compile.plugin.version>3.2</maven.compile.plugin.version>
63     <maven.depends.version>1.2</maven.depends.version>
64     <maven.jar.version>2.3.2</maven.jar.version> <!-- FIXME: bump to 2.4 -->
65     <maven.javadoc.version>2.10.1</maven.javadoc.version>
66     <maven.release.version>2.5.1</maven.release.version>
67     <maven.source.version>2.4</maven.source.version>
68     <maven.surefire.version>2.18</maven.surefire.version>
69
70     <!-- Maven plugin versions, in random formats -->
71     <bundle.plugin.version>${maven.bundle.version}</bundle.plugin.version>
72     <checkstyle.version>2.13</checkstyle.version>
73     <compiler.version>2.3.2</compiler.version> <!-- FIXME: should become ${maven.compile.plugin.version} -->
74     <enforcer.version>1.3.1</enforcer.version>
75     <paxexam.plugin.version>1.2.4</paxexam.plugin.version> <!-- FIXME: this is latest version of paxexam plugin -->
76     <enunciate.version>1.28</enunciate.version> <!-- Needs to remain exported, as its used for dependencies, too -->
77     <exam.version>3.0.0</exam.version> <!-- Needs to remain exported, as its used for dependencies, too -->
78     <failsafe.version>2.18</failsafe.version>
79     <gmaven.plugin.version>1.0</gmaven.plugin.version>
80     <jacoco.version>0.7.2.201409121644</jacoco.version>
81     <jar.plugin.version>2.5</jar.plugin.version> <!-- FIXME: should become ${maven.jar.version} -->
82     <karaf.version>3.0.2</karaf.version> <!-- Needs to remain exported, as its used for dependencies, too -->
83     <projectinfo>2.6</projectinfo>
84     <propertymavenplugin.version>1.0-alpha-2</propertymavenplugin.version>
85     <releaseplugin.version>2.3.2</releaseplugin.version> <!-- FIXME: should become ${maven.release.version} -->
86     <siteplugin>3.4</siteplugin>
87     <!--
88          This needs to remain exported, as we use it for dependencies, too.
89          We cannot bump it freely, as this version is tied to
90          org.opendaylight.yangtools.thirdparty/xtend-lib-osgi, which only
91          has 2.4.3. Long-term goal is to get rid of xtend completely.
92          -->
93     <xtend.version>2.4.3</xtend.version>
94     <odl.checkstyle.version>0.0.1-SNAPSHOT</odl.checkstyle.version>
95
96     <!-- Supporting Libraries -->
97     <aopalliance.version>1.0.0</aopalliance.version>
98     <aries.util.version>1.1.0</aries.util.version>
99     <asm.version>4.1</asm.version>
100     <bouncycastle.version>1.50</bouncycastle.version>
101     <commons.codec.version>1.8</commons.codec.version>
102     <commons.fileupload.version>1.2.2</commons.fileupload.version>
103     <commons.io.version>2.4</commons.io.version>
104     <commons.lang3.version>3.1</commons.lang3.version>
105     <commons.lang.version>2.6</commons.lang.version>
106     <commons.net.version>3.0.1</commons.net.version>
107     <corsfilter.version>7.0.42</corsfilter.version>
108     <ctrie.version>0.2.23</ctrie.version>
109     <eclipse.persistence.version>2.5.0</eclipse.persistence.version>
110     <feature.transaction.version>1.0.1</feature.transaction.version>
111     <felix.dependencymanager.shell.version>3.0.1</felix.dependencymanager.shell.version>
112     <felix.dependencymanager.version>3.1.0</felix.dependencymanager.version>
113     <felix.fileinstall.version>3.1.6</felix.fileinstall.version>
114     <felix.webconsole.version>4.2.0</felix.webconsole.version>
115     <geminiweb.version>2.2.0.RELEASE</geminiweb.version>
116     <groovy.version>2.1.6</groovy.version>
117     <gson.version>2.2.4</gson.version>
118     <guava.version>14.0.1</guava.version>
119     <hamcrest.version>1.3</hamcrest.version>
120     <jackson.version>2.3.2</jackson.version>
121     <javassist.version>3.18.2-GA</javassist.version>
122     <javax.annotation.version>1.2</javax.annotation.version>
123     <jaxrs-api.version>3.0.4.Final</jaxrs-api.version>
124     <jersey-servlet.version>1.17</jersey-servlet.version>
125     <jersey.version>1.17</jersey.version>
126     <jersey.client.version>1.17</jersey.client.version>
127     <jersey.server.version>1.17</jersey.server.version>
128     <jersey-servlet.version>1.17</jersey-servlet.version>
129     <jersey2.publisher.version>4.0</jersey2.publisher.version>
130     <jersey2.version>2.8</jersey2.version>
131     <jettison.version>1.3.3</jettison.version>
132     <jolokia.version>1.1.4</jolokia.version>
133     <jsonassert.version>1.2.3</jsonassert.version>
134     <jsr305.api.version>2.0.3</jsr305.api.version>
135     <jsr311.api.version>1.1.1</jsr311.api.version>
136     <jsr311.v2.api.version>2.0</jsr311.v2.api.version>
137     <junit.version>4.11</junit.version>
138     <logback.version>1.0.9</logback.version>
139     <mockito.version>1.9.5</mockito.version>
140     <netty.version>4.0.23.Final</netty.version>
141     <osgi.compendium.version>5.0.0</osgi.compendium.version>
142     <osgi.core.version>5.0.0</osgi.core.version>
143     <org.json.version>20131018</org.json.version>
144     <slf4j.version>1.7.2</slf4j.version>
145     <spifly.version>1.0.0</spifly.version>
146     <spring-osgi.version>1.2.1</spring-osgi.version>
147     <spring-security-karaf.version>3.1.4.RELEASE</spring-security-karaf.version>
148     <spring-security.version>3.1.3.RELEASE</spring-security.version>
149     <spring.version>3.1.3.RELEASE</spring.version>
150     <txw2.version>20110809</txw2.version>
151     <url.version>1.5.0</url.version>
152     <virgo.version>3.6.0.RELEASE</virgo.version>
153
154     <!-- Default Sonar configuration -->
155     <sonar-jacoco-listeners.version>2.4</sonar-jacoco-listeners.version>
156     <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
157     <sonar.jacoco.reportPath>target/code-coverage/jacoco.exec</sonar.jacoco.reportPath>
158     <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
159   </properties>
160
161   <dependencyManagement>
162     <dependencies>
163       <!-- Testing Dependencies -->
164       <dependency>
165         <groupId>junit</groupId>
166         <artifactId>junit</artifactId>
167         <version>${junit.version}</version>
168         <scope>test</scope>
169       </dependency>
170       <dependency>
171          <groupId>org.skyscreamer</groupId>
172          <artifactId>jsonassert</artifactId>
173          <version>${jsonassert.version}</version>
174          <scope>test</scope>
175       </dependency>
176       <dependency>
177         <groupId>org.mockito</groupId>
178         <artifactId>mockito-all</artifactId>
179         <version>${mockito.version}</version>
180         <scope>test</scope>
181       </dependency>
182       <dependency>
183         <groupId>org.mockito</groupId>
184         <artifactId>mockito-core</artifactId>
185         <version>${mockito.version}</version>
186         <scope>test</scope>
187       </dependency>
188       <dependency>
189         <groupId>org.hamcrest</groupId>
190         <artifactId>hamcrest-core</artifactId>
191         <version>${hamcrest.version}</version>
192         <scope>test</scope>
193       </dependency>
194       <dependency>
195         <groupId>org.slf4j</groupId>
196         <artifactId>slf4j-simple</artifactId>
197         <version>${slf4j.version}</version>
198         <scope>test</scope>
199       </dependency>
200       <!-- Supporting Libraries -->
201       <dependency>
202         <groupId>org.slf4j</groupId>
203         <artifactId>jcl-over-slf4j</artifactId>
204         <version>${slf4j.version}</version>
205       </dependency>
206       <dependency>
207         <groupId>org.slf4j</groupId>
208         <artifactId>slf4j-api</artifactId>
209         <version>${slf4j.version}</version>
210       </dependency>
211       <dependency>
212         <groupId>org.slf4j</groupId>
213         <artifactId>slf4j-log4j12</artifactId>
214         <version>${slf4j.version}</version>
215       </dependency>
216       <dependency>
217         <groupId>org.slf4j</groupId>
218         <artifactId>log4j-over-slf4j</artifactId>
219         <version>${slf4j.version}</version>
220       </dependency>
221       <dependency>
222         <groupId>xml-apis</groupId>
223         <artifactId>xml-apis</artifactId>
224         <version>2.0.2</version>
225       </dependency>
226       <dependency>
227         <groupId>ch.qos.logback</groupId>
228         <artifactId>logback-core</artifactId>
229         <version>${logback.version}</version>
230       </dependency>
231       <dependency>
232         <groupId>ch.qos.logback</groupId>
233         <artifactId>logback-classic</artifactId>
234         <version>${logback.version}</version>
235       </dependency>
236       <dependency>
237         <groupId>com.google.guava</groupId>
238         <artifactId>guava</artifactId>
239         <version>${guava.version}</version>
240       </dependency>
241       <dependency>
242         <groupId>org.eclipse.xtend</groupId>
243         <artifactId>org.eclipse.xtend.lib</artifactId>
244         <version>${xtend.version}</version>
245       </dependency>
246       <dependency>
247         <groupId>org.apache.commons</groupId>
248         <artifactId>commons-lang3</artifactId>
249         <version>${commons.lang3.version}</version>
250       </dependency>
251       <dependency>
252         <groupId>commons-lang</groupId>
253         <artifactId>commons-lang</artifactId>
254         <version>${commons.lang.version}</version>
255       </dependency>
256       <dependency>
257         <groupId>commons-codec</groupId>
258         <artifactId>commons-codec</artifactId>
259         <version>${commons.codec.version}</version>
260       </dependency>
261       <!-- Jersey for JAXRS -->
262       <dependency>
263         <groupId>com.sun.jersey</groupId>
264         <artifactId>jersey-core</artifactId>
265         <version>${jersey.version}</version>
266       </dependency>
267       <dependency>
268         <groupId>com.sun.jersey</groupId>
269         <artifactId>jersey-server</artifactId>
270         <version>${jersey.version}</version>
271       </dependency>
272       <dependency>
273         <groupId>com.sun.jersey</groupId>
274         <artifactId>jersey-client</artifactId>
275         <version>${jersey.client.version}</version>
276       </dependency>
277       <dependency>
278         <groupId>org.opendaylight.controller.thirdparty</groupId>
279         <artifactId>com.sun.jersey.jersey-servlet</artifactId>
280         <version>${jersey-servlet.version}</version>
281       </dependency>
282       <!-- Plugin integration -->
283       <dependency>
284         <groupId>org.sonatype.plexus</groupId>
285         <artifactId>plexus-build-api</artifactId>
286         <version>0.0.7</version>
287       </dependency>
288       <dependency>
289         <groupId>org.codehaus.plexus</groupId>
290         <artifactId>plexus-slf4j-logging</artifactId>
291         <version>1.1</version>
292       </dependency>
293       <dependency>
294         <groupId>com.fasterxml.jackson.core</groupId>
295         <artifactId>jackson-annotations</artifactId>
296         <version>${jackson.version}</version>
297       </dependency>
298       <dependency>
299         <groupId>com.fasterxml.jackson.core</groupId>
300         <artifactId>jackson-core</artifactId>
301         <version>${jackson.version}</version>
302       </dependency>
303       <dependency>
304         <groupId>com.fasterxml.jackson.core</groupId>
305         <artifactId>jackson-databind</artifactId>
306         <version>${jackson.version}</version>
307       </dependency>
308       <dependency>
309         <groupId>com.fasterxml.jackson.datatype</groupId>
310         <artifactId>jackson-datatype-json-org</artifactId>
311         <version>${jackson.version}</version>
312       </dependency>
313
314       <dependency>
315           <groupId>org.jboss.resteasy</groupId>
316           <artifactId>jaxrs-api</artifactId>
317           <version>${jaxrs-api.version}</version>
318       </dependency>
319
320       <dependency>
321         <groupId>com.fasterxml.jackson.jaxrs</groupId>
322         <artifactId>jackson-jaxrs-base</artifactId>
323         <version>${jackson.version}</version>
324       </dependency>
325       <dependency>
326         <groupId>com.fasterxml.jackson.jaxrs</groupId>
327         <artifactId>jackson-jaxrs-json-provider</artifactId>
328         <version>${jackson.version}</version>
329       </dependency>
330       <dependency>
331         <groupId>com.fasterxml.jackson.module</groupId>
332         <artifactId>jackson-module-jaxb-annotations</artifactId>
333         <version>${jackson.version}</version>
334       </dependency>
335       <dependency>
336         <groupId>com.sun.xml.txw2</groupId>
337         <artifactId>txw2</artifactId>
338         <version>${txw2.version}</version>
339       </dependency>
340       <dependency>
341         <groupId>com.github.romix</groupId>
342         <artifactId>java-concurrent-hash-trie-map</artifactId>
343         <version>${ctrie.version}</version>
344       </dependency>
345       <dependency>
346         <groupId>com.google.code.findbugs</groupId>
347         <artifactId>jsr305</artifactId>
348         <version>${jsr305.api.version}</version>
349       </dependency>
350       <dependency>
351         <groupId>com.google.code.gson</groupId>
352         <artifactId>gson</artifactId>
353         <version>${gson.version}</version>
354       </dependency>
355       <dependency>
356         <groupId>commons-fileupload</groupId>
357         <artifactId>commons-fileupload</artifactId>
358         <version>${commons.fileupload.version}</version>
359       </dependency>
360       <dependency>
361         <groupId>commons-io</groupId>
362         <artifactId>commons-io</artifactId>
363         <version>${commons.io.version}</version>
364       </dependency>
365       <dependency>
366         <groupId>commons-net</groupId>
367         <artifactId>commons-net</artifactId>
368         <version>${commons.net.version}</version>
369       </dependency>
370       <dependency>
371         <groupId>eclipselink</groupId>
372         <artifactId>javax.persistence</artifactId>
373         <version>2.0.4.v201112161009</version>
374       </dependency>
375       <dependency>
376         <groupId>eclipselink</groupId>
377         <artifactId>javax.resource</artifactId>
378         <version>1.5.0.v200906010428</version>
379       </dependency>
380       <dependency>
381         <groupId>equinoxSDK381</groupId>
382         <artifactId>javax.servlet</artifactId>
383         <version>3.0.0.v201112011016</version>
384       </dependency>
385       <dependency>
386         <groupId>equinoxSDK381</groupId>
387         <artifactId>javax.servlet.jsp</artifactId>
388         <version>2.2.0.v201112011158</version>
389       </dependency>
390       <dependency>
391         <groupId>equinoxSDK381</groupId>
392         <artifactId>org.apache.felix.gogo.command</artifactId>
393         <version>0.8.0.v201108120515</version>
394       </dependency>
395       <dependency>
396         <groupId>equinoxSDK381</groupId>
397         <artifactId>org.apache.felix.gogo.runtime</artifactId>
398         <version>0.8.0.v201108120515</version>
399       </dependency>
400       <dependency>
401         <groupId>equinoxSDK381</groupId>
402         <artifactId>org.apache.felix.gogo.shell</artifactId>
403         <version>0.8.0.v201110170705</version>
404       </dependency>
405       <dependency>
406         <groupId>equinoxSDK381</groupId>
407         <artifactId>org.eclipse.equinox.cm</artifactId>
408         <version>1.0.400.v20120522-1841</version>
409       </dependency>
410       <dependency>
411         <groupId>equinoxSDK381</groupId>
412         <artifactId>org.eclipse.equinox.console</artifactId>
413         <version>1.0.0.v20120522-1841</version>
414       </dependency>
415       <dependency>
416         <groupId>equinoxSDK381</groupId>
417         <artifactId>org.eclipse.equinox.ds</artifactId>
418         <version>1.4.0.v20120522-1841</version>
419       </dependency>
420       <dependency>
421         <groupId>equinoxSDK381</groupId>
422         <artifactId>org.eclipse.equinox.launcher</artifactId>
423         <version>1.3.0.v20120522-1813</version>
424       </dependency>
425       <dependency>
426         <groupId>equinoxSDK381</groupId>
427         <artifactId>org.eclipse.equinox.util</artifactId>
428         <version>1.0.400.v20120522-2049</version>
429       </dependency>
430       <dependency>
431         <groupId>equinoxSDK381</groupId>
432         <artifactId>org.eclipse.osgi</artifactId>
433         <version>3.8.1.v20120830-144521</version>
434       </dependency>
435       <dependency>
436         <groupId>equinoxSDK381</groupId>
437         <artifactId>org.eclipse.osgi.services</artifactId>
438         <version>3.3.100.v20120522-1822</version>
439       </dependency>
440       <!-- Gemini Web -->
441       <dependency>
442         <groupId>geminiweb</groupId>
443         <artifactId>org.eclipse.gemini.web.core</artifactId>
444         <version>${geminiweb.version}</version>
445       </dependency>
446       <dependency>
447         <groupId>geminiweb</groupId>
448         <artifactId>org.eclipse.gemini.web.extender</artifactId>
449         <version>${geminiweb.version}</version>
450       </dependency>
451       <dependency>
452         <groupId>geminiweb</groupId>
453         <artifactId>org.eclipse.gemini.web.tomcat</artifactId>
454         <version>${geminiweb.version}</version>
455       </dependency>
456       <dependency>
457         <groupId>geminiweb</groupId>
458         <artifactId>org.eclipse.virgo.kernel.equinox.extensions</artifactId>
459         <version>${virgo.version}</version>
460       </dependency>
461       <dependency>
462         <groupId>geminiweb</groupId>
463         <artifactId>org.eclipse.virgo.util.common</artifactId>
464         <version>${virgo.version}</version>
465       </dependency>
466       <dependency>
467         <groupId>geminiweb</groupId>
468         <artifactId>org.eclipse.virgo.util.io</artifactId>
469         <version>${virgo.version}</version>
470       </dependency>
471       <dependency>
472         <groupId>geminiweb</groupId>
473         <artifactId>org.eclipse.virgo.util.math</artifactId>
474         <version>${virgo.version}</version>
475       </dependency>
476       <dependency>
477         <groupId>geminiweb</groupId>
478         <artifactId>org.eclipse.virgo.util.osgi</artifactId>
479         <version>${virgo.version}</version>
480       </dependency>
481       <dependency>
482         <groupId>geminiweb</groupId>
483         <artifactId>org.eclipse.virgo.util.osgi.manifest</artifactId>
484         <version>${virgo.version}</version>
485       </dependency>
486       <dependency>
487         <groupId>geminiweb</groupId>
488         <artifactId>org.eclipse.virgo.util.parser.manifest</artifactId>
489         <version>${virgo.version}</version>
490       </dependency>
491       <dependency>
492         <groupId>io.netty</groupId>
493         <artifactId>netty-buffer</artifactId>
494         <version>${netty.version}</version>
495       </dependency>
496       <dependency>
497         <groupId>io.netty</groupId>
498         <artifactId>netty-codec</artifactId>
499         <version>${netty.version}</version>
500       </dependency>
501       <dependency>
502         <groupId>io.netty</groupId>
503         <artifactId>netty-codec-http</artifactId>
504         <version>${netty.version}</version>
505       </dependency>
506       <dependency>
507         <groupId>io.netty</groupId>
508         <artifactId>netty-common</artifactId>
509         <version>${netty.version}</version>
510       </dependency>
511       <!-- Netty -->
512       <dependency>
513         <groupId>io.netty</groupId>
514         <artifactId>netty-handler</artifactId>
515         <version>${netty.version}</version>
516       </dependency>
517       <dependency>
518         <groupId>io.netty</groupId>
519         <artifactId>netty-transport</artifactId>
520         <version>${netty.version}</version>
521       </dependency>
522       <dependency>
523         <groupId>javax.ws.rs</groupId>
524         <artifactId>jsr311-api</artifactId>
525         <version>${jsr311.api.version}</version>
526       </dependency>
527       <dependency>
528         <groupId>orbit</groupId>
529         <artifactId>javax.activation</artifactId>
530         <version>1.1.0.v201211130549</version>
531       </dependency>
532       <dependency>
533         <groupId>orbit</groupId>
534         <artifactId>javax.annotation</artifactId>
535         <version>1.1.0.v201209060031</version>
536       </dependency>
537       <dependency>
538         <groupId>orbit</groupId>
539         <artifactId>javax.ejb</artifactId>
540         <version>3.1.1.v201204261316</version>
541       </dependency>
542       <dependency>
543         <groupId>orbit</groupId>
544         <artifactId>javax.el</artifactId>
545         <version>2.2.0.v201108011116</version>
546       </dependency>
547       <dependency>
548         <groupId>orbit</groupId>
549         <artifactId>javax.mail.glassfish</artifactId>
550         <version>1.4.1.v201108011116</version>
551       </dependency>
552       <dependency>
553         <groupId>orbit</groupId>
554         <artifactId>javax.servlet.jsp.jstl</artifactId>
555         <version>1.2.0.v201105211821</version>
556       </dependency>
557       <dependency>
558         <groupId>orbit</groupId>
559         <artifactId>javax.servlet.jsp.jstl.impl</artifactId>
560         <version>1.2.0.v201210211230</version>
561       </dependency>
562       <dependency>
563         <groupId>orbit</groupId>
564         <artifactId>javax.xml.rpc</artifactId>
565         <version>1.1.0.v201005080400</version>
566       </dependency>
567       <dependency>
568         <groupId>orbit</groupId>
569         <artifactId>org.apache.catalina</artifactId>
570         <version>7.0.53.v201406061610</version>
571       </dependency>
572       <dependency>
573         <groupId>orbit</groupId>
574         <artifactId>org.apache.catalina.ha</artifactId>
575         <version>7.0.53.v201406070630</version>
576       </dependency>
577       <dependency>
578         <groupId>orbit</groupId>
579         <artifactId>org.apache.catalina.tribes</artifactId>
580         <version>7.0.53.v201406070630</version>
581       </dependency>
582       <dependency>
583         <groupId>orbit</groupId>
584         <artifactId>org.apache.coyote</artifactId>
585         <version>7.0.53.v201406070630</version>
586       </dependency>
587       <dependency>
588         <groupId>orbit</groupId>
589         <artifactId>org.apache.el</artifactId>
590         <version>7.0.53.v201406060720</version>
591       </dependency>
592       <dependency>
593         <groupId>orbit</groupId>
594         <artifactId>org.apache.jasper</artifactId>
595         <version>7.0.53.v201406070630</version>
596       </dependency>
597       <dependency>
598         <groupId>orbit</groupId>
599         <artifactId>org.apache.juli.extras</artifactId>
600         <version>7.0.53.v201406060720</version>
601       </dependency>
602       <dependency>
603         <groupId>orbit</groupId>
604         <artifactId>org.apache.tomcat.api</artifactId>
605         <version>7.0.53.v201406060720</version>
606       </dependency>
607       <dependency>
608         <groupId>orbit</groupId>
609         <artifactId>org.apache.tomcat.util</artifactId>
610         <version>7.0.53.v201406070630</version>
611       </dependency>
612       <dependency>
613         <groupId>org.aopalliance</groupId>
614         <artifactId>com.springsource.org.aopalliance</artifactId>
615         <version>${aopalliance.version}</version>
616       </dependency>
617       <dependency>
618         <groupId>org.apache.felix</groupId>
619         <artifactId>org.apache.felix.dependencymanager</artifactId>
620         <version>${felix.dependencymanager.version}</version>
621       </dependency>
622       <dependency>
623         <groupId>org.apache.felix</groupId>
624         <artifactId>org.apache.felix.dependencymanager.shell</artifactId>
625         <version>${felix.dependencymanager.shell.version}</version>
626       </dependency>
627       <dependency>
628         <groupId>org.apache.felix</groupId>
629         <artifactId>org.apache.felix.fileinstall</artifactId>
630         <version>${felix.fileinstall.version}</version>
631       </dependency>
632       <!-- felix webconsole -->
633       <dependency>
634         <groupId>org.apache.felix</groupId>
635         <artifactId>org.apache.felix.webconsole</artifactId>
636         <version>${felix.webconsole.version}</version>
637         <!-- the all bundle includes all the necessary plugins -->
638         <classifier>all</classifier>
639       </dependency>
640       <dependency>
641         <groupId>org.bouncycastle</groupId>
642         <artifactId>bcpkix-jdk15on</artifactId>
643         <version>${bouncycastle.version}</version>
644       </dependency>
645       <dependency>
646         <groupId>org.bouncycastle</groupId>
647         <artifactId>bcprov-jdk15on</artifactId>
648         <version>${bouncycastle.version}</version>
649       </dependency>
650       <dependency>
651         <groupId>org.codehaus.enunciate</groupId>
652         <artifactId>enunciate-core-annotations</artifactId>
653         <version>${enunciate.version}</version>
654       </dependency>
655       <dependency>
656         <groupId>org.codehaus.jettison</groupId>
657         <artifactId>jettison</artifactId>
658         <version>${jettison.version}</version>
659       </dependency>
660       <!-- equinox http service bridge -->
661       <dependency>
662         <groupId>org.eclipse.equinox.http</groupId>
663         <artifactId>servlet</artifactId>
664         <version>1.0.0-v20070606</version>
665       </dependency>
666       <dependency>
667         <groupId>org.eclipse.persistence</groupId>
668         <artifactId>org.eclipse.persistence.antlr</artifactId>
669         <version>${eclipse.persistence.version}</version>
670       </dependency>
671       <dependency>
672         <groupId>org.eclipse.persistence</groupId>
673         <artifactId>org.eclipse.persistence.core</artifactId>
674         <version>${eclipse.persistence.version}</version>
675       </dependency>
676       <dependency>
677         <groupId>org.eclipse.persistence</groupId>
678         <artifactId>org.eclipse.persistence.moxy</artifactId>
679         <version>${eclipse.persistence.version}</version>
680       </dependency>
681       <dependency>
682         <groupId>org.javassist</groupId>
683         <artifactId>javassist</artifactId>
684         <version>${javassist.version}</version>
685       </dependency>
686       <dependency>
687         <groupId>org.jboss.spec.javax.transaction</groupId>
688         <artifactId>jboss-transaction-api_1.1_spec</artifactId>
689         <version>1.0.1.Final</version>
690       </dependency>
691       <dependency>
692         <groupId>org.jolokia</groupId>
693         <artifactId>jolokia-osgi</artifactId>
694         <version>${jolokia.version}</version>
695       </dependency>
696       <dependency>
697         <groupId>org.json</groupId>
698         <artifactId>json</artifactId>
699         <version>${org.json.version}</version>
700       </dependency>
701       <dependency>
702         <groupId>org.osgi</groupId>
703         <artifactId>org.osgi.compendium</artifactId>
704         <version>${osgi.compendium.version}</version>
705       </dependency>
706       <dependency>
707         <groupId>org.osgi</groupId>
708         <artifactId>org.osgi.core</artifactId>
709         <version>${osgi.core.version}</version>
710       </dependency>
711       <dependency>
712         <groupId>org.ow2.asm</groupId>
713         <artifactId>asm-all</artifactId>
714         <version>4.1</version>
715       </dependency>
716       <!-- Visual VM hook -->
717       <dependency>
718         <groupId>org.ow2.chameleon.management</groupId>
719         <artifactId>chameleon-mbeans</artifactId>
720         <version>1.0.0</version>
721       </dependency>
722       <dependency>
723         <groupId>org.springframework</groupId>
724         <artifactId>org.springframework.aop</artifactId>
725         <version>${spring.version}</version>
726       </dependency>
727       <dependency>
728         <groupId>org.springframework</groupId>
729         <artifactId>org.springframework.asm</artifactId>
730         <version>${spring.version}</version>
731       </dependency>
732       <dependency>
733         <groupId>org.springframework</groupId>
734         <artifactId>org.springframework.beans</artifactId>
735         <version>${spring.version}</version>
736       </dependency>
737       <dependency>
738         <groupId>org.springframework</groupId>
739         <artifactId>org.springframework.context</artifactId>
740         <version>${spring.version}</version>
741       </dependency>
742       <dependency>
743         <groupId>org.springframework</groupId>
744         <artifactId>org.springframework.context.support</artifactId>
745         <version>${spring.version}</version>
746       </dependency>
747       <dependency>
748         <groupId>org.springframework</groupId>
749         <artifactId>org.springframework.core</artifactId>
750         <version>${spring.version}</version>
751       </dependency>
752       <dependency>
753         <groupId>org.springframework</groupId>
754         <artifactId>org.springframework.expression</artifactId>
755         <version>${spring.version}</version>
756       </dependency>
757       <dependency>
758         <groupId>org.springframework</groupId>
759         <artifactId>org.springframework.transaction</artifactId>
760         <version>${spring-security.version}</version>
761       </dependency>
762       <dependency>
763         <groupId>org.springframework</groupId>
764         <artifactId>org.springframework.web</artifactId>
765         <version>${spring.version}</version>
766       </dependency>
767       <dependency>
768         <groupId>org.springframework</groupId>
769         <artifactId>org.springframework.web.servlet</artifactId>
770         <version>${spring.version}</version>
771       </dependency>
772       <!-- Spring security -->
773       <dependency>
774         <groupId>org.springframework.security</groupId>
775         <artifactId>spring-security-config</artifactId>
776         <version>${spring-security.version}</version>
777       </dependency>
778       <dependency>
779         <groupId>org.springframework.security</groupId>
780         <artifactId>spring-security-core</artifactId>
781         <version>${spring-security.version}</version>
782       </dependency>
783       <dependency>
784         <groupId>org.springframework.security</groupId>
785         <artifactId>spring-security-taglibs</artifactId>
786         <version>${spring-security.version}</version>
787       </dependency>
788       <dependency>
789         <groupId>org.springframework.security</groupId>
790         <artifactId>spring-security-web</artifactId>
791         <version>${spring-security.version}</version>
792       </dependency>
793       <dependency>
794         <groupId>virgomirror</groupId>
795         <artifactId>org.eclipse.jdt.core.compiler.batch</artifactId>
796         <version>3.8.0.I20120518-2145</version>
797       </dependency>
798       <!-- Add Pax Exam -->
799       <dependency>
800         <groupId>org.ops4j.pax.exam</groupId>
801         <artifactId>pax-exam-container-native</artifactId>
802         <version>${exam.version}</version>
803         <scope>test</scope>
804       </dependency>
805       <dependency>
806         <groupId>org.ops4j.pax.exam</groupId>
807         <artifactId>pax-exam-junit4</artifactId>
808         <version>${exam.version}</version>
809         <scope>test</scope>
810       </dependency>
811       <dependency>
812         <groupId>org.ops4j.pax.exam</groupId>
813         <artifactId>pax-exam-link-mvn</artifactId>
814         <version>${exam.version}</version>
815         <scope>test</scope>
816       </dependency>
817       <dependency>
818         <groupId>org.ops4j.pax.url</groupId>
819         <artifactId>pax-url-aether</artifactId>
820         <version>${url.version}</version>
821         <scope>test</scope>
822       </dependency>
823       <dependency>
824         <groupId>org.springframework.osgi</groupId>
825         <artifactId>spring-osgi-mock</artifactId>
826         <version>${spring-osgi.version}</version>
827         <scope>test</scope>
828       </dependency>
829       <dependency>
830         <groupId>xmlunit</groupId>
831         <artifactId>xmlunit</artifactId>
832         <version>1.5</version>
833         <scope>test</scope>
834       </dependency>
835     </dependencies>
836   </dependencyManagement>
837   <repositories>
838     <!-- OpenDayLight Repo Mirror -->
839     <repository>
840       <releases>
841         <enabled>true</enabled>
842         <updatePolicy>never</updatePolicy>
843       </releases>
844       <snapshots>
845         <enabled>false</enabled>
846       </snapshots>
847       <id>opendaylight-mirror</id>
848       <name>opendaylight-mirror</name>
849       <url>${nexusproxy}/groups/public/</url>
850     </repository>
851     <!-- OpenDayLight Snapshot artifact -->
852     <repository>
853       <releases>
854         <enabled>false</enabled>
855       </releases>
856       <snapshots>
857         <enabled>true</enabled>
858       </snapshots>
859       <id>opendaylight-snapshot</id>
860       <name>opendaylight-snapshot</name>
861       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
862     </repository>
863   </repositories>
864   <pluginRepositories>
865     <!-- OpenDayLight Repo Mirror -->
866     <pluginRepository>
867       <releases>
868         <enabled>true</enabled>
869         <updatePolicy>never</updatePolicy>
870       </releases>
871       <snapshots>
872         <enabled>false</enabled>
873       </snapshots>
874       <id>opendaylight-mirror</id>
875       <name>opendaylight-mirror</name>
876       <url>${nexusproxy}/groups/public/</url>
877     </pluginRepository>
878     <!-- OpenDayLight Snapshot artifact -->
879     <pluginRepository>
880       <releases>
881         <enabled>false</enabled>
882       </releases>
883       <snapshots>
884         <enabled>true</enabled>
885       </snapshots>
886       <id>opendaylight-snapshot</id>
887       <name>opendaylight-snapshot</name>
888       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
889     </pluginRepository>
890   </pluginRepositories>
891
892   <build>
893     <pluginManagement>
894       <plugins>
895         <!-- Official maven plugins, alpha-sorted by artifactId.
896              We do not need to specify the groupId. -->
897         <plugin>
898           <artifactId>maven-antrun-plugin</artifactId>
899           <version>${maven.antrun.plugin.version}</version>
900         </plugin>
901         <plugin>
902           <artifactId>maven-checkstyle-plugin</artifactId>
903           <version>${checkstyle.version}</version>
904           <dependencies>
905             <dependency>
906               <groupId>org.opendaylight.odlparent</groupId>
907               <artifactId>checkstyle</artifactId>
908               <version>${odl.checkstyle.version}</version>
909             </dependency>
910           </dependencies>
911           <configuration>
912             <configLocation>odl_checks.xml</configLocation>
913             <failsOnError>false</failsOnError>
914             <consoleOutput>true</consoleOutput>
915           </configuration>
916           <executions>
917             <execution>
918               <goals>
919                 <goal>check</goal>
920               </goals>
921               <phase>process-sources</phase>
922             </execution>
923           </executions>
924         </plugin>
925         <plugin>
926           <artifactId>maven-clean-plugin</artifactId>
927           <version>${maven.clean.plugin.version}</version>
928         </plugin>
929         <plugin>
930           <artifactId>maven-compiler-plugin</artifactId>
931           <version>${maven.compile.plugin.version}</version>
932         </plugin>
933         <plugin>
934           <artifactId>maven-enforcer-plugin</artifactId>
935           <version>${enforcer.version}</version>
936         </plugin>
937         <plugin>
938           <artifactId>maven-failsafe-plugin</artifactId>
939           <version>${failsafe.version}</version>
940         </plugin>
941         <plugin>
942           <artifactId>maven-jar-plugin</artifactId>
943           <version>${jar.plugin.version}</version>
944         </plugin>
945         <plugin>
946           <artifactId>maven-javadoc-plugin</artifactId>
947           <version>${maven.javadoc.version}</version>
948         </plugin>
949         <plugin>
950           <artifactId>maven-release-plugin</artifactId>
951           <version>${maven.release.version}</version>
952         </plugin>
953         <plugin>
954           <artifactId>maven-resources-plugin</artifactId>
955           <version>2.7</version>
956         </plugin>
957         <plugin>
958           <artifactId>maven-shade-plugin</artifactId>
959           <version>2.3</version>
960         </plugin>
961         <plugin>
962           <artifactId>maven-site-plugin</artifactId>
963           <version>${siteplugin}</version>
964         </plugin>
965         <plugin>
966           <artifactId>maven-source-plugin</artifactId>
967           <version>${maven.source.version}</version>
968         </plugin>
969         <plugin>
970           <artifactId>maven-surefire-plugin</artifactId>
971           <version>${maven.surefire.version}</version>
972         </plugin>
973
974         <!-- Third-party plugins, grouped by groupId, alpha-sorted by artifactId -->
975         <plugin>
976           <groupId>org.apache.felix</groupId>
977           <artifactId>maven-bundle-plugin</artifactId>
978           <version>${maven.bundle.version}</version>
979           <extensions>true</extensions>
980         </plugin>
981
982         <plugin>
983           <groupId>org.apache.karaf.tooling</groupId>
984           <artifactId>karaf-maven-plugin</artifactId>
985           <version>${karaf.version}</version>
986         </plugin>
987
988         <plugin>
989           <groupId>org.apache.servicemix.tooling</groupId>
990           <artifactId>depends-maven-plugin</artifactId>
991           <version>${maven.depends.version}</version>
992           <executions>
993             <execution>
994               <id>generate-depends-file</id>
995               <goals>
996                 <goal>generate-depends-file</goal>
997               </goals>
998             </execution>
999           </executions>
1000         </plugin>
1001
1002         <plugin>
1003           <groupId>org.codehaus.enunciate</groupId>
1004           <artifactId>maven-enunciate-plugin</artifactId>
1005           <version>${enunciate.version}</version>
1006         </plugin>
1007         <plugin>
1008           <groupId>org.codehaus.groovy.maven</groupId>
1009           <artifactId>gmaven-plugin</artifactId>
1010           <version>${gmaven.plugin.version}</version>
1011         </plugin>
1012         <plugin>
1013           <groupId>org.codehaus.mojo</groupId>
1014           <artifactId>build-helper-maven-plugin</artifactId>
1015           <version>1.9.1</version>
1016         </plugin>
1017         <plugin>
1018           <groupId>org.codehaus.mojo</groupId>
1019           <artifactId>properties-maven-plugin</artifactId>
1020           <version>${propertymavenplugin.version}</version>
1021         </plugin>
1022
1023         <plugin>
1024           <groupId>org.eclipse.m2e</groupId>
1025           <artifactId>lifecycle-mapping</artifactId>
1026           <version>1.0.0</version>
1027           <configuration>
1028             <lifecycleMappingMetadata>
1029               <pluginExecutions>
1030                 <pluginExecution>
1031                   <pluginExecutionFilter>
1032                     <groupId>org.apache.felix</groupId>
1033                     <artifactId>maven-bundle-plugin</artifactId>
1034                     <versionRange>[1.0,)</versionRange>
1035                     <goals>
1036                       <goal>manifest</goal>
1037                     </goals>
1038                   </pluginExecutionFilter>
1039                   <action>
1040                     <execute></execute>
1041                   </action>
1042                 </pluginExecution>
1043               </pluginExecutions>
1044             </lifecycleMappingMetadata>
1045           </configuration>
1046         </plugin>
1047
1048         <plugin>
1049           <groupId>org.eclipse.xtend</groupId>
1050           <artifactId>xtend-maven-plugin</artifactId>
1051           <version>${xtend.version}</version>
1052         </plugin>
1053
1054         <plugin>
1055           <groupId>org.jacoco</groupId>
1056           <artifactId>jacoco-maven-plugin</artifactId>
1057           <version>${jacoco.version}</version>
1058         </plugin>
1059
1060         <plugin>
1061           <groupId>org.ops4j.pax.exam</groupId>
1062           <artifactId>maven-paxexam-plugin</artifactId>
1063           <version>${paxexam.plugin.version}</version>
1064         </plugin>
1065       </plugins>
1066     </pluginManagement>
1067   </build>
1068
1069   <reporting>
1070     <plugins>
1071       <plugin>
1072         <artifactId>maven-checkstyle-plugin</artifactId>
1073         <version>${checkstyle.version}</version>
1074       </plugin>
1075
1076       <!-- FIXME: activate this
1077       <plugin>
1078         <artifactId>maven-project-info-reports-plugin</artifactId>
1079         <version>${projectinfo}</version>
1080       </plugin-->
1081       <plugin>
1082         <groupId>org.codehaus.mojo</groupId>
1083         <artifactId>findbugs-maven-plugin</artifactId>
1084         <version>3.0.0</version>
1085         <configuration>
1086           <effort>Max</effort>
1087           <threshold>Low</threshold>
1088           <goal>site</goal>
1089         </configuration>
1090       </plugin>
1091       <plugin>
1092         <groupId>org.codehaus.mojo</groupId>
1093         <artifactId>jdepend-maven-plugin</artifactId>
1094         <version>2.0</version>
1095       </plugin>
1096     </plugins>
1097   </reporting>
1098 </project>