Checksum errors seen on some setup while downloading guava
[controller.git] / opendaylight / commons / opendaylight / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4   <modelVersion>4.0.0</modelVersion>
5   <prerequisites>
6     <maven>3.0</maven>
7   </prerequisites>
8   <groupId>org.opendaylight.controller</groupId>
9   <artifactId>commons.opendaylight</artifactId>
10   <version>1.4.0-SNAPSHOT</version>
11   <packaging>pom</packaging>
12   <parent>
13     <groupId>org.opendaylight.controller</groupId>
14     <artifactId>commons.parent</artifactId>
15     <version>1.0.0-SNAPSHOT</version>
16     <relativePath>../parent</relativePath>
17   </parent>
18   <scm>
19     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
20     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
21     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
22   </scm>
23
24   <properties>
25     <propertymavenplugin.version>1.0-alpha-2</propertymavenplugin.version>
26     <sonar.host.url>https://sonar.opendaylight.org/</sonar.host.url>
27     <sitedeploy>dav:http://nexus.opendaylight.org/content/sites/site</sitedeploy>
28     <siteplugin>3.2</siteplugin>
29     <projectinfo>2.6</projectinfo>
30     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
31     <compiler.version>2.3.2</compiler.version>
32     <surefire.version>2.15</surefire.version>
33     <failsafe.version>2.15</failsafe.version>
34     <exam.version>3.0.0</exam.version>
35     <url.version>1.5.0</url.version>
36     <enunciate.version>1.26.2</enunciate.version>
37     <sonar.branch>${user.name}-private-view</sonar.branch>
38     <sonar.skippedModules>org.openflow.openflowj,net.sf.jung2</sonar.skippedModules>
39     <logback.version>1.0.9</logback.version>
40     <slf4j.version>1.7.2</slf4j.version>
41     <jackson.version>1.9.8</jackson.version>
42     <spring.version>3.1.3.RELEASE</spring.version>
43     <spring-security.version>3.1.3.RELEASE</spring-security.version>
44     <jersey.version>1.17</jersey.version>
45     <virgo.version>3.6.0.RELEASE</virgo.version>
46     <geminiweb.version>2.2.0.RELEASE</geminiweb.version>
47     <checkstyle.version>2.10</checkstyle.version>
48     <testvm.argLine>-Xmx1024m -XX:MaxPermSize=256m</testvm.argLine>
49     <yang.version>0.5.7-SNAPSHOT</yang.version>
50     <guava.version>14.0.1</guava.version>
51     <ietf-inet-types.version>2010.09.24-SNAPSHOT</ietf-inet-types.version>
52     <ietf-yang-types.version>2010.09.24-SNAPSHOT</ietf-yang-types.version>
53     <yang-ext.version>2013.09.07-SNAPSHOT</yang-ext.version>
54     <javassist.version>3.17.1-GA</javassist.version>
55     <sample-toaster.version>1.0-SNAPSHOT</sample-toaster.version>
56     <releaseplugin.version>2.3.2</releaseplugin.version>
57   </properties>
58
59   <pluginRepositories>
60     <pluginRepository>
61       <id>central2</id>
62       <name>central2</name>
63       <url>http://repo2.maven.org/maven2</url>
64     </pluginRepository>
65   </pluginRepositories>
66
67   <profiles>
68     <profile>
69       <id>notduringrelease</id>
70       <activation>
71         <property>
72           <name>!DOINGRELEASE</name>
73         </property>
74       </activation>
75       <dependencies>
76         <!-- yangtools -->
77
78         <dependency>
79           <groupId>org.opendaylight.yangtools</groupId>
80           <artifactId>yang-binding</artifactId>
81           <version>${yang.version}</version>
82         </dependency>
83         <dependency>
84           <groupId>org.opendaylight.yangtools</groupId>
85           <artifactId>yang-common</artifactId>
86           <version>${yang.version}</version>
87         </dependency>
88         <dependency>
89           <groupId>org.opendaylight.yangtools</groupId>
90           <artifactId>yang-data-api</artifactId>
91           <version>${yang.version}</version>
92         </dependency>
93         <dependency>
94           <groupId>org.opendaylight.yangtools</groupId>
95           <artifactId>yang-model-api</artifactId>
96           <version>${yang.version}</version>
97         </dependency>
98         <dependency>
99           <groupId>org.opendaylight.yangtools</groupId>
100           <artifactId>yang-data-util</artifactId>
101           <version>${yang.version}</version>
102         </dependency>
103
104         <!-- Models -->
105
106         <dependency>
107           <groupId>org.opendaylight.yangtools.model</groupId>
108           <artifactId>ietf-inet-types</artifactId>
109           <version>${ietf-inet-types.version}</version>
110         </dependency>
111         <dependency>
112           <groupId>org.opendaylight.yangtools.model</groupId>
113           <artifactId>ietf-yang-types</artifactId>
114           <version>${ietf-yang-types.version}</version>
115         </dependency>
116         <dependency>
117           <groupId>org.opendaylight.yangtools</groupId>
118           <artifactId>yang-ext</artifactId>
119           <version>${yang-ext.version}</version>
120         </dependency>
121
122         <!-- Other MDSAL dependencies -->
123
124         <dependency>
125           <groupId>com.google.guava</groupId>
126           <artifactId>guava</artifactId>
127           <version>${guava.version}</version>
128           <type>jar</type>
129         </dependency>
130         <dependency>
131           <groupId>org.javassist</groupId>
132           <artifactId>javassist</artifactId>
133           <version>${javassist.version}</version>
134         </dependency>
135       </dependencies>
136       <properties>
137         <build.suffix>${project.version}</build.suffix>
138       </properties>
139     </profile>
140     <profile>
141       <id>viewbuild</id>
142       <activation>
143         <activeByDefault>true</activeByDefault>
144       </activation>
145       <properties>
146         <build.suffix>${project.version}</build.suffix>
147       </properties>
148     </profile>
149     <profile>
150       <id>jenkins</id>
151       <activation>
152         <property>
153           <name>BUILDSUFFIX</name>
154         </property>
155       </activation>
156       <properties>
157         <build.suffix>${BUILDSUFFIX}</build.suffix>
158       </properties>
159     </profile>
160     <profile>
161       <id>fastreassembly</id>
162       <build>
163         <plugins>
164           <plugin>
165             <groupId>org.apache.maven.plugins</groupId>
166             <artifactId>maven-dependency-plugin</artifactId>
167             <version>2.4</version>
168             <executions>
169               <execution>
170                 <id>copyfastreassembly</id>
171                 <phase>install</phase>
172                 <goals>
173                   <goal>copy</goal>
174                 </goals>
175                 <configuration>
176                   <artifactItems>
177                     <artifactItem>
178                       <groupId>${project.groupId}</groupId>
179                       <artifactId>${project.artifactId}</artifactId>
180                       <version>${project.version}</version>
181                       <destFileName>${project.groupId}.${project.artifactId}-${project.version}.jar</destFileName>
182                     </artifactItem>
183                   </artifactItems>
184                   <outputDirectory>${fastreassembly.directory}</outputDirectory>
185                 </configuration>
186               </execution>
187             </executions>
188           </plugin>
189         </plugins>
190       </build>
191     </profile>
192   </profiles>
193
194   <repositories>
195     <!-- EBR release -->
196     <!-- http://repository.springsource.com/maven/bundles/release -->
197     <repository>
198       <id>ebr-bundles-release</id>
199       <name>ebr-bundles-release</name>
200       <url>${nexusproxy}/repositories/ebr-bundles-release/</url>
201     </repository>
202     <!-- EBR external -->
203     <!-- http://repository.springsource.com/maven/bundles/external -->
204     <repository>
205       <id>ebr-bundles-external</id>
206       <name>ebr-bundles-external</name>
207       <url>${nexusproxy}/repositories/ebr-bundles-external/</url>
208     </repository>
209     <repository>
210       <id>central2</id>
211       <name>central2</name>
212       <url>http://repo2.maven.org/maven2</url>
213     </repository>
214     <repository>
215       <id>central</id>
216       <name>central</name>
217       <url>http://repo1.maven.org/maven2</url>
218     </repository>
219     <!-- Pax mirror -->
220     <!-- https://oss.sonatype.org/content/repositories/ops4j-releases -->
221     <repository>
222       <id>ops4j-releases</id>
223       <name>ops4j-releases</name>
224       <url>${nexusproxy}/repositories/ops4j-releases/</url>
225     </repository>
226     <!-- Third Packages hosted in local maven because not available in
227          other places -->
228     <repository>
229       <id>thirdparty</id>
230       <name>thirdparty</name>
231       <url>${nexusproxy}/repositories/thirdparty/</url>
232     </repository>
233     <!-- Jboss mirror -->
234     <!-- https://repository.jboss.org/nexus/content/repositories/releases -->
235     <repository>
236       <id>jboss.releases</id>
237       <name>jboss.releases</name>
238       <url>${nexusproxy}/repositories/jboss.releases/</url>
239     </repository>
240     <!-- OpenDayLight Released artifact -->
241     <repository>
242       <id>opendaylight-release</id>
243       <name>opendaylight-release</name>
244       <url>${nexusproxy}/repositories/opendaylight.release/</url>
245     </repository>
246     <!-- OpenDayLight Snapshot artifact -->
247     <repository>
248       <id>opendaylight-snapshot</id>
249       <name>opendaylight-snapshot</name>
250       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
251     </repository>
252   </repositories>
253   <distributionManagement>
254     <!-- OpenDayLight Released artifact -->
255     <repository>
256       <id>opendaylight-release</id>
257       <url>${nexusproxy}/repositories/opendaylight.release/</url>
258     </repository>
259     <!-- OpenDayLight Snapshot artifact -->
260     <snapshotRepository>
261       <id>opendaylight-snapshot</id>
262       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
263     </snapshotRepository>
264     <!-- Site deployment -->
265     <site>
266       <id>website</id>
267       <url>${sitedeploy}</url>
268     </site>
269   </distributionManagement>
270
271   <reporting>
272     <excludeDefaults>true</excludeDefaults>
273     <outputDirectory>${project.build.directory}/site</outputDirectory>
274     <plugins>
275       <plugin>
276         <groupId>org.apache.maven.plugins</groupId>
277         <artifactId>maven-project-info-reports-plugin</artifactId>
278         <version>${projectinfo}</version>
279         <configuration>
280           <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
281           <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
282         </configuration>
283         <reportSets>
284           <reportSet>
285             <reports>
286               <report>index</report>
287               <report>project-team</report>
288               <report>license</report>
289               <report>mailing-list</report>
290               <report>plugin-management</report>
291               <report>cim</report>
292               <report>issue-tracking</report>
293               <report>scm</report>
294               <report>summary</report>
295             </reports>
296           </reportSet>
297         </reportSets>
298       </plugin>
299       <plugin>
300         <groupId>org.apache.maven.plugins</groupId>
301         <artifactId>maven-jxr-plugin</artifactId>
302         <version>2.3</version>
303         <configuration>
304           <aggregate>true</aggregate>
305           <linkJavadoc>true</linkJavadoc>
306         </configuration>
307       </plugin>
308       <plugin>
309         <groupId>org.apache.maven.plugins</groupId>
310         <artifactId>maven-checkstyle-plugin</artifactId>
311         <version>${checkstyle.version}</version>
312       </plugin>
313       <plugin>
314         <groupId>org.apache.maven.plugins</groupId>
315         <artifactId>maven-javadoc-plugin</artifactId>
316         <version>2.8.1</version>
317         <configuration>
318           <doclet>org.jboss.apiviz.APIviz</doclet>
319           <docletArtifact>
320             <groupId>org.jboss.apiviz</groupId>
321             <artifactId>apiviz</artifactId>
322             <version>1.3.2.GA</version>
323           </docletArtifact>
324           <finalName>${project.artifactId}-${build.suffix}</finalName>
325           <useStandardDocletOptions>true</useStandardDocletOptions>
326           <charset>UTF-8</charset>
327           <encoding>UTF-8</encoding>
328           <docencoding>UTF-8</docencoding>
329           <breakiterator>true</breakiterator>
330           <version>true</version>
331           <author>true</author>
332           <keywords>true</keywords>
333           <excludePackageNames>*.internal:edu.uci.*</excludePackageNames>
334         </configuration>
335       </plugin>
336     </plugins>
337   </reporting>
338
339   <build>
340     <plugins>
341       <plugin>
342         <groupId>org.codehaus.mojo</groupId>
343         <artifactId>properties-maven-plugin</artifactId>
344         <version>${propertymavenplugin.version}</version>
345         <executions>
346           <execution>
347             <goals>
348               <goal>set-system-properties</goal>
349             </goals>
350             <configuration>
351               <properties>
352                 <property>
353                   <name>logback.configurationFile</name>
354                   <value>${project.parent.basedir}/logback.xml</value>
355                 </property>
356               </properties>
357             </configuration>
358           </execution>
359         </executions>
360       </plugin>
361       <plugin>
362         <groupId>com.googlecode.maven-java-formatter-plugin</groupId>
363         <artifactId>maven-java-formatter-plugin</artifactId>
364         <version>0.3.1</version>
365         <configuration>
366           <compilerSource>1.6</compilerSource>
367           <compilerCompliance>1.6</compilerCompliance>
368           <compilerTargetPlatform>1.6</compilerTargetPlatform>
369           <configFile>${project.parent.basedir}/sun_coding_style.xml</configFile>
370         </configuration>
371       </plugin>
372       <plugin>
373         <groupId>org.apache.maven.plugins</groupId>
374         <artifactId>maven-checkstyle-plugin</artifactId>
375         <version>${checkstyle.version}</version>
376           <dependencies>
377             <dependency>
378               <groupId>org.opendaylight.controller</groupId>
379               <artifactId>checkstyle</artifactId>
380               <version>0.0.1-SNAPSHOT</version>
381             </dependency>
382           </dependencies>
383         <executions>
384           <execution>
385             <phase>process-sources</phase>
386             <goals>
387               <goal>check</goal>
388             </goals>
389           </execution>
390         </executions>
391         <configuration>
392           <failsOnError>true</failsOnError>
393           <configLocation>controller/space_and_tabs_checks.xml</configLocation>
394           <consoleOutput>true</consoleOutput>
395           <includeTestSourceDirectory>true</includeTestSourceDirectory>
396           <sourceDirectory>${project.basedir}</sourceDirectory>
397           <includes>**\/*.java,**\/*.xml,**\/*.ini,**\/*.sh,**\/*.bat</includes>
398           <excludes>target\/</excludes>
399         </configuration>
400       </plugin>
401       <plugin>
402         <groupId>org.apache.maven.plugins</groupId>
403         <artifactId>maven-failsafe-plugin</artifactId>
404         <version>${failsafe.version}</version>
405         <configuration>
406           <argLine>${testvm.argLine}</argLine>
407         </configuration>
408         <executions>
409           <execution>
410             <goals>
411               <goal>integration-test</goal>
412             </goals>
413           </execution>
414         </executions>
415       </plugin>
416       <plugin>
417         <groupId>org.apache.maven.plugins</groupId>
418         <artifactId>maven-surefire-plugin</artifactId>
419         <version>${surefire.version}</version>
420         <configuration>
421           <argLine>${testvm.argLine}</argLine>
422         </configuration>
423       </plugin>
424     </plugins>
425     <pluginManagement>
426       <plugins>
427         <plugin>
428           <groupId>org.apache.maven.plugins</groupId>
429           <artifactId>maven-release-plugin</artifactId>
430           <version>${releaseplugin.version}</version>
431         </plugin>
432         <!-- Ignore/Execute plugin execution -->
433         <plugin>
434           <groupId>org.eclipse.m2e</groupId>
435           <artifactId>lifecycle-mapping</artifactId>
436           <version>1.0.0</version>
437           <configuration>
438             <lifecycleMappingMetadata>
439               <pluginExecutions>
440                 <pluginExecution>
441                   <pluginExecutionFilter>
442                     <groupId>org.codehaus.mojo</groupId>
443                     <artifactId>properties-maven-plugin</artifactId>
444                     <versionRange>[0.0,)</versionRange>
445                     <goals>
446                       <goal>set-system-properties</goal>
447                     </goals>
448                   </pluginExecutionFilter>
449                   <action>
450                     <ignore/>
451                   </action>
452                 </pluginExecution>
453                 <pluginExecution>
454                   <pluginExecutionFilter>
455                     <groupId>org.codehaus.enunciate</groupId>
456                     <artifactId>maven-enunciate-plugin</artifactId>
457                     <versionRange>[0.0,)</versionRange>
458                     <goals>
459                       <goal>docs</goal>
460                     </goals>
461                   </pluginExecutionFilter>
462                   <action>
463                     <ignore/>
464                   </action>
465                 </pluginExecution>
466                 <pluginExecution>
467                   <pluginExecutionFilter>
468                     <groupId>org.jacoco</groupId>
469                     <artifactId>jacoco-maven-plugin</artifactId>
470                     <versionRange>[0.0,)</versionRange>
471                     <goals>
472                       <goal>prepare-agent</goal>
473                       <goal>pre-test</goal>
474                       <goal>post-test</goal>
475                     </goals>
476                   </pluginExecutionFilter>
477                   <action>
478                     <ignore/>
479                   </action>
480                 </pluginExecution>
481                 <pluginExecution>
482                   <pluginExecutionFilter>
483                     <groupId>org.ops4j.pax.exam</groupId>
484                     <artifactId>maven-paxexam-plugin</artifactId>
485                     <versionRange>[1.2.4,)</versionRange>
486                     <goals>
487                       <goal>generate-depends-file</goal>
488                     </goals>
489                   </pluginExecutionFilter>
490                   <action>
491                     <ignore/>
492                   </action>
493                 </pluginExecution>
494                 <pluginExecution>
495                   <pluginExecutionFilter>
496                     <groupId>org.apache.maven.plugins</groupId>
497                     <artifactId>maven-checkstyle-plugin</artifactId>
498                     <versionRange>[2.0,)</versionRange>
499                     <goals>
500                       <goal>check</goal>
501                     </goals>
502                   </pluginExecutionFilter>
503                   <action>
504                     <ignore/>
505                   </action>
506                 </pluginExecution>
507               </pluginExecutions>
508             </lifecycleMappingMetadata>
509           </configuration>
510         </plugin>
511         <plugin>
512           <groupId>org.codehaus.enunciate</groupId>
513           <artifactId>maven-enunciate-plugin</artifactId>
514           <version>${enunciate.version}</version>
515           <configuration>
516             <configFile>enunciate.xml</configFile>
517           </configuration>
518           <executions>
519             <execution>
520               <goals>
521                 <goal>docs</goal>
522               </goals>
523             </execution>
524           </executions>
525         </plugin>
526         <plugin>
527           <groupId>org.apache.maven.plugins</groupId>
528           <artifactId>maven-compiler-plugin</artifactId>
529           <version>${compiler.version}</version>
530           <configuration>
531             <source>1.6</source>
532             <target>1.6</target>
533           </configuration>
534         </plugin>
535         <plugin>
536           <groupId>org.apache.maven.plugins</groupId>
537           <artifactId>maven-javadoc-plugin</artifactId>
538           <version>2.8.1</version>
539           <configuration>
540             <doclet>org.jboss.apiviz.APIviz</doclet>
541             <docletArtifact>
542               <groupId>org.jboss.apiviz</groupId>
543               <artifactId>apiviz</artifactId>
544               <version>1.3.2.GA</version>
545             </docletArtifact>
546             <finalName>${project.artifactId}-${build.suffix}</finalName>
547             <useStandardDocletOptions>true</useStandardDocletOptions>
548             <charset>UTF-8</charset>
549             <encoding>UTF-8</encoding>
550             <docencoding>UTF-8</docencoding>
551             <breakiterator>true</breakiterator>
552             <version>true</version>
553             <author>true</author>
554             <keywords>true</keywords>
555             <excludePackageNames>net.sf.jnetlib.*:cern.*:corejava:*.internal:edu.uci.*</excludePackageNames>
556           </configuration>
557         </plugin>
558         <plugin>
559           <groupId>org.apache.maven.plugins</groupId>
560           <artifactId>maven-jxr-plugin</artifactId>
561           <version>2.3</version>
562           <configuration>
563             <aggregate>true</aggregate>
564             <linkJavadoc>true</linkJavadoc>
565             <javadocDir>target/apidocs</javadocDir>
566           </configuration>
567         </plugin>
568       </plugins>
569     </pluginManagement>
570   </build>
571
572   <dependencies>
573     <dependency>
574       <groupId>org.slf4j</groupId>
575       <artifactId>jcl-over-slf4j</artifactId>
576       <version>${slf4j.version}</version>
577     </dependency>
578     <dependency>
579       <groupId>org.slf4j</groupId>
580       <artifactId>slf4j-api</artifactId>
581       <version>${slf4j.version}</version>
582     </dependency>
583     <dependency>
584       <groupId>org.slf4j</groupId>
585       <artifactId>log4j-over-slf4j</artifactId>
586       <version>${slf4j.version}</version>
587     </dependency>
588     <dependency>
589       <groupId>ch.qos.logback</groupId>
590       <artifactId>logback-core</artifactId>
591       <version>${logback.version}</version>
592     </dependency>
593     <dependency>
594       <groupId>ch.qos.logback</groupId>
595       <artifactId>logback-classic</artifactId>
596       <version>${logback.version}</version>
597     </dependency>
598     <dependency>
599       <groupId>org.codehaus.jackson</groupId>
600       <artifactId>jackson-mapper-asl</artifactId>
601       <version>${jackson.version}</version>
602     </dependency>
603     <dependency>
604       <groupId>org.codehaus.jackson</groupId>
605       <artifactId>jackson-core-asl</artifactId>
606       <version>${jackson.version}</version>
607     </dependency>
608     <dependency>
609       <groupId>org.codehaus.jackson</groupId>
610       <artifactId>jackson-jaxrs</artifactId>
611       <version>${jackson.version}</version>
612     </dependency>
613     <dependency>
614       <groupId>org.codehaus.jettison</groupId>
615       <artifactId>jettison</artifactId>
616       <version>1.3.3</version>
617     </dependency>
618     <dependency>
619       <groupId>commons-io</groupId>
620       <artifactId>commons-io</artifactId>
621       <version>2.3</version>
622     </dependency>
623     <dependency>
624       <groupId>commons-fileupload</groupId>
625       <artifactId>commons-fileupload</artifactId>
626       <version>1.2.2</version>
627     </dependency>
628     <dependency>
629       <groupId>equinoxSDK381</groupId>
630       <artifactId>javax.servlet</artifactId>
631       <version>3.0.0.v201112011016</version>
632     </dependency>
633     <dependency>
634       <groupId>equinoxSDK381</groupId>
635       <artifactId>javax.servlet.jsp</artifactId>
636       <version>2.2.0.v201112011158</version>
637     </dependency>
638     <dependency>
639       <groupId>equinoxSDK381</groupId>
640       <artifactId>org.eclipse.equinox.ds</artifactId>
641       <version>1.4.0.v20120522-1841</version>
642     </dependency>
643     <dependency>
644       <groupId>equinoxSDK381</groupId>
645       <artifactId>org.eclipse.equinox.util</artifactId>
646       <version>1.0.400.v20120522-2049</version>
647     </dependency>
648     <dependency>
649       <groupId>equinoxSDK381</groupId>
650       <artifactId>org.eclipse.osgi.services</artifactId>
651       <version>3.3.100.v20120522-1822</version>
652     </dependency>
653     <dependency>
654       <groupId>equinoxSDK381</groupId>
655       <artifactId>org.eclipse.osgi</artifactId>
656       <version>3.8.1.v20120830-144521</version>
657     </dependency>
658     <dependency>
659       <groupId>equinoxSDK381</groupId>
660       <artifactId>org.apache.felix.gogo.command</artifactId>
661       <version>0.8.0.v201108120515</version>
662     </dependency>
663     <dependency>
664       <groupId>equinoxSDK381</groupId>
665       <artifactId>org.apache.felix.gogo.runtime</artifactId>
666       <version>0.8.0.v201108120515</version>
667     </dependency>
668     <dependency>
669       <groupId>equinoxSDK381</groupId>
670       <artifactId>org.apache.felix.gogo.shell</artifactId>
671       <version>0.8.0.v201110170705</version>
672     </dependency>
673     <dependency>
674       <groupId>equinoxSDK381</groupId>
675       <artifactId>org.eclipse.equinox.cm</artifactId>
676       <version>1.0.400.v20120522-1841</version>
677     </dependency>
678     <dependency>
679       <groupId>equinoxSDK381</groupId>
680       <artifactId>org.eclipse.equinox.console</artifactId>
681       <version>1.0.0.v20120522-1841</version>
682     </dependency>
683     <dependency>
684       <groupId>equinoxSDK381</groupId>
685       <artifactId>org.eclipse.equinox.launcher</artifactId>
686       <version>1.3.0.v20120522-1813</version>
687     </dependency>
688     <!-- Gemini Web -->
689     <dependency>
690       <groupId>geminiweb</groupId>
691       <artifactId>org.eclipse.gemini.web.core</artifactId>
692       <version>${geminiweb.version}</version>
693     </dependency>
694     <dependency>
695       <groupId>geminiweb</groupId>
696       <artifactId>org.eclipse.gemini.web.extender</artifactId>
697       <version>${geminiweb.version}</version>
698     </dependency>
699     <dependency>
700       <groupId>geminiweb</groupId>
701       <artifactId>org.eclipse.gemini.web.tomcat</artifactId>
702       <version>${geminiweb.version}</version>
703     </dependency>
704     <dependency>
705       <groupId>geminiweb</groupId>
706       <artifactId>org.eclipse.virgo.kernel.equinox.extensions</artifactId>
707       <version>${virgo.version}</version>
708     </dependency>
709     <dependency>
710       <groupId>geminiweb</groupId>
711       <artifactId>org.eclipse.virgo.util.common</artifactId>
712       <version>${virgo.version}</version>
713     </dependency>
714     <dependency>
715       <groupId>geminiweb</groupId>
716       <artifactId>org.eclipse.virgo.util.io</artifactId>
717       <version>${virgo.version}</version>
718     </dependency>
719     <dependency>
720       <groupId>geminiweb</groupId>
721       <artifactId>org.eclipse.virgo.util.math</artifactId>
722       <version>${virgo.version}</version>
723     </dependency>
724     <dependency>
725       <groupId>geminiweb</groupId>
726       <artifactId>org.eclipse.virgo.util.osgi</artifactId>
727       <version>${virgo.version}</version>
728     </dependency>
729     <dependency>
730       <groupId>geminiweb</groupId>
731       <artifactId>org.eclipse.virgo.util.osgi.manifest</artifactId>
732       <version>${virgo.version}</version>
733     </dependency>
734     <dependency>
735       <groupId>geminiweb</groupId>
736       <artifactId>org.eclipse.virgo.util.parser.manifest</artifactId>
737       <version>${virgo.version}</version>
738     </dependency>
739     <dependency>
740       <groupId>org.apache.felix</groupId>
741       <artifactId>org.apache.felix.dependencymanager</artifactId>
742       <version>3.1.0</version>
743     </dependency>
744     <dependency>
745       <groupId>org.apache.felix</groupId>
746       <artifactId>org.apache.felix.dependencymanager.shell</artifactId>
747       <version>3.0.1</version>
748     </dependency>
749     <dependency>
750       <groupId>com.google.code.gson</groupId>
751       <artifactId>gson</artifactId>
752       <version>2.1</version>
753       <scope>compile</scope>
754     </dependency>
755     <dependency>
756       <groupId>org.jboss.spec.javax.transaction</groupId>
757       <artifactId>jboss-transaction-api_1.1_spec</artifactId>
758       <version>1.0.1.Final</version>
759     </dependency>
760     <dependency>
761       <groupId>org.apache.felix</groupId>
762       <artifactId>org.apache.felix.fileinstall</artifactId>
763       <version>3.1.6</version>
764     </dependency>
765     <dependency>
766       <groupId>org.apache.commons</groupId>
767       <artifactId>commons-lang3</artifactId>
768       <version>3.1</version>
769     </dependency>
770     <dependency>
771       <groupId>virgomirror</groupId>
772       <artifactId>org.eclipse.jdt.core.compiler.batch</artifactId>
773       <version>3.8.0.I20120518-2145</version>
774     </dependency>
775     <dependency>
776       <groupId>eclipselink</groupId>
777       <artifactId>javax.persistence</artifactId>
778       <version>2.0.4.v201112161009</version>
779     </dependency>
780     <dependency>
781       <groupId>orbit</groupId>
782       <artifactId>javax.activation</artifactId>
783       <version>1.1.0.v201211130549</version>
784     </dependency>
785     <dependency>
786       <groupId>orbit</groupId>
787       <artifactId>javax.annotation</artifactId>
788       <version>1.1.0.v201209060031</version>
789     </dependency>
790     <dependency>
791       <groupId>orbit</groupId>
792       <artifactId>javax.ejb</artifactId>
793       <version>3.1.1.v201204261316</version>
794     </dependency>
795     <dependency>
796       <groupId>orbit</groupId>
797       <artifactId>javax.el</artifactId>
798       <version>2.2.0.v201108011116</version>
799     </dependency>
800     <dependency>
801       <groupId>orbit</groupId>
802       <artifactId>javax.mail.glassfish</artifactId>
803       <version>1.4.1.v201108011116</version>
804     </dependency>
805     <dependency>
806       <groupId>orbit</groupId>
807       <artifactId>javax.xml.rpc</artifactId>
808       <version>1.1.0.v201005080400</version>
809     </dependency>
810     <dependency>
811       <groupId>orbit</groupId>
812       <artifactId>org.apache.catalina</artifactId>
813       <version>7.0.32.v201211201336</version>
814     </dependency>
815     <dependency>
816       <groupId>orbit</groupId>
817       <artifactId>org.apache.catalina.ha</artifactId>
818       <version>7.0.32.v201211201952</version>
819     </dependency>
820     <dependency>
821       <groupId>orbit</groupId>
822       <artifactId>org.apache.catalina.tribes</artifactId>
823       <version>7.0.32.v201211201952</version>
824     </dependency>
825     <dependency>
826       <groupId>orbit</groupId>
827       <artifactId>org.apache.coyote</artifactId>
828       <version>7.0.32.v201211201952</version>
829     </dependency>
830     <dependency>
831       <groupId>orbit</groupId>
832       <artifactId>org.apache.el</artifactId>
833       <version>7.0.32.v201211081135</version>
834     </dependency>
835     <dependency>
836       <groupId>orbit</groupId>
837       <artifactId>org.apache.jasper</artifactId>
838       <version>7.0.32.v201211201952</version>
839     </dependency>
840     <dependency>
841       <groupId>orbit</groupId>
842       <artifactId>org.apache.juli.extras</artifactId>
843       <version>7.0.32.v201211081135</version>
844     </dependency>
845     <dependency>
846       <groupId>orbit</groupId>
847       <artifactId>org.apache.tomcat.api</artifactId>
848       <version>7.0.32.v201211081135</version>
849     </dependency>
850     <dependency>
851       <groupId>orbit</groupId>
852       <artifactId>org.apache.tomcat.util</artifactId>
853       <version>7.0.32.v201211201952</version>
854     </dependency>
855     <dependency>
856       <groupId>orbit</groupId>
857       <artifactId>javax.servlet.jsp.jstl</artifactId>
858       <version>1.2.0.v201105211821</version>
859     </dependency>
860     <dependency>
861       <groupId>orbit</groupId>
862       <artifactId>javax.servlet.jsp.jstl.impl</artifactId>
863       <version>1.2.0.v201210211230</version>
864     </dependency>
865     <dependency>
866       <groupId>eclipselink</groupId>
867       <artifactId>javax.resource</artifactId>
868       <version>1.5.0.v200906010428</version>
869     </dependency>
870     <!-- Add Pax Exam -->
871     <dependency>
872       <groupId>org.ops4j.pax.exam</groupId>
873       <artifactId>pax-exam-container-native</artifactId>
874       <version>${exam.version}</version>
875       <scope>test</scope>
876     </dependency>
877     <dependency>
878       <groupId>org.ops4j.pax.exam</groupId>
879       <artifactId>pax-exam-junit4</artifactId>
880       <version>${exam.version}</version>
881       <scope>test</scope>
882     </dependency>
883     <dependency>
884       <groupId>org.ops4j.pax.exam</groupId>
885       <artifactId>pax-exam-link-mvn</artifactId>
886       <version>${exam.version}</version>
887       <scope>test</scope>
888     </dependency>
889     <dependency>
890       <groupId>org.ops4j.pax.url</groupId>
891       <artifactId>pax-url-aether</artifactId>
892       <version>${url.version}</version>
893       <scope>test</scope>
894     </dependency>
895     <dependency>
896       <groupId>org.springframework</groupId>
897       <artifactId>org.springframework.asm</artifactId>
898       <version>${spring.version}</version>
899     </dependency>
900     <dependency>
901       <groupId>org.springframework</groupId>
902       <artifactId>org.springframework.aop</artifactId>
903       <version>${spring.version}</version>
904     </dependency>
905     <dependency>
906       <groupId>org.springframework</groupId>
907       <artifactId>org.springframework.context</artifactId>
908       <version>${spring.version}</version>
909     </dependency>
910     <dependency>
911       <groupId>org.springframework</groupId>
912       <artifactId>org.springframework.context.support</artifactId>
913       <version>${spring.version}</version>
914     </dependency>
915     <dependency>
916       <groupId>org.springframework</groupId>
917       <artifactId>org.springframework.core</artifactId>
918       <version>${spring.version}</version>
919     </dependency>
920     <dependency>
921       <groupId>org.springframework</groupId>
922       <artifactId>org.springframework.beans</artifactId>
923       <version>${spring.version}</version>
924     </dependency>
925     <dependency>
926       <groupId>org.springframework</groupId>
927       <artifactId>org.springframework.expression</artifactId>
928       <version>${spring.version}</version>
929     </dependency>
930     <dependency>
931       <groupId>org.springframework</groupId>
932       <artifactId>org.springframework.web</artifactId>
933       <version>${spring.version}</version>
934     </dependency>
935     <dependency>
936       <groupId>org.aopalliance</groupId>
937       <artifactId>com.springsource.org.aopalliance</artifactId>
938       <version>1.0.0</version>
939     </dependency>
940     <dependency>
941       <groupId>org.springframework</groupId>
942       <artifactId>org.springframework.web.servlet</artifactId>
943       <version>${spring.version}</version>
944     </dependency>
945     <!-- Spring security -->
946     <dependency>
947       <groupId>org.springframework.security</groupId>
948       <artifactId>spring-security-config</artifactId>
949       <version>${spring-security.version}</version>
950     </dependency>
951     <dependency>
952       <groupId>org.springframework.security</groupId>
953       <artifactId>spring-security-core</artifactId>
954       <version>${spring-security.version}</version>
955     </dependency>
956     <dependency>
957       <groupId>org.springframework.security</groupId>
958       <artifactId>spring-security-web</artifactId>
959       <version>${spring-security.version}</version>
960     </dependency>
961     <dependency>
962       <groupId>org.springframework.security</groupId>
963       <artifactId>spring-security-taglibs</artifactId>
964       <version>${spring-security.version}</version>
965     </dependency>
966     <dependency>
967       <groupId>org.springframework</groupId>
968       <artifactId>org.springframework.transaction</artifactId>
969       <version>${spring-security.version}</version>
970     </dependency>
971     <!-- Visual VM hook -->
972     <dependency>
973       <groupId>org.ow2.chameleon.management</groupId>
974       <artifactId>chameleon-mbeans</artifactId>
975       <version>1.0.0</version>
976     </dependency>
977     <!-- Jersey for JAXRS -->
978     <dependency>
979       <groupId>com.sun.jersey</groupId>
980       <artifactId>jersey-core</artifactId>
981       <version>${jersey.version}</version>
982     </dependency>
983     <dependency>
984       <groupId>com.sun.jersey</groupId>
985       <artifactId>jersey-server</artifactId>
986       <version>${jersey.version}</version>
987     </dependency>
988     <dependency>
989       <groupId>com.sun.jersey</groupId>
990       <artifactId>jersey-client</artifactId>
991       <version>${jersey.version}</version>
992     </dependency>
993     <dependency>
994       <groupId>com.sun.jersey</groupId>
995       <artifactId>jersey-json</artifactId>
996       <version>${jersey.version}</version>
997     </dependency>
998   </dependencies>
999 </project>