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