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