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