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