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