Merge "MD-SAL model for group feature in OF 1.3."
[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         <configuration>
443           <argLine>${testvm.argLine}</argLine>
444         </configuration>
445       </plugin>
446     </plugins>
447     <pluginManagement>
448       <plugins>
449         <plugin>
450           <groupId>org.apache.maven.plugins</groupId>
451           <artifactId>maven-release-plugin</artifactId>
452           <version>${releaseplugin.version}</version>
453         </plugin>
454         <!-- Ignore/Execute plugin execution -->
455         <plugin>
456           <groupId>org.eclipse.m2e</groupId>
457           <artifactId>lifecycle-mapping</artifactId>
458           <version>1.0.0</version>
459           <configuration>
460             <lifecycleMappingMetadata>
461               <pluginExecutions>
462                 <pluginExecution>
463                   <pluginExecutionFilter>
464                     <groupId>org.codehaus.mojo</groupId>
465                     <artifactId>properties-maven-plugin</artifactId>
466                     <versionRange>[0.0,)</versionRange>
467                     <goals>
468                       <goal>set-system-properties</goal>
469                     </goals>
470                   </pluginExecutionFilter>
471                   <action>
472                     <ignore/>
473                   </action>
474                 </pluginExecution>
475                 <pluginExecution>
476                   <pluginExecutionFilter>
477                     <groupId>org.codehaus.enunciate</groupId>
478                     <artifactId>maven-enunciate-plugin</artifactId>
479                     <versionRange>[0.0,)</versionRange>
480                     <goals>
481                       <goal>docs</goal>
482                     </goals>
483                   </pluginExecutionFilter>
484                   <action>
485                     <ignore/>
486                   </action>
487                 </pluginExecution>
488                 <pluginExecution>
489                   <pluginExecutionFilter>
490                     <groupId>org.jacoco</groupId>
491                     <artifactId>jacoco-maven-plugin</artifactId>
492                     <versionRange>[0.0,)</versionRange>
493                     <goals>
494                       <goal>prepare-agent</goal>
495                       <goal>pre-test</goal>
496                       <goal>post-test</goal>
497                     </goals>
498                   </pluginExecutionFilter>
499                   <action>
500                     <ignore/>
501                   </action>
502                 </pluginExecution>
503                 <pluginExecution>
504                   <pluginExecutionFilter>
505                     <groupId>org.ops4j.pax.exam</groupId>
506                     <artifactId>maven-paxexam-plugin</artifactId>
507                     <versionRange>[1.2.4,)</versionRange>
508                     <goals>
509                       <goal>generate-depends-file</goal>
510                     </goals>
511                   </pluginExecutionFilter>
512                   <action>
513                     <ignore/>
514                   </action>
515                 </pluginExecution>
516                 <pluginExecution>
517                   <pluginExecutionFilter>
518                     <groupId>org.apache.maven.plugins</groupId>
519                     <artifactId>maven-checkstyle-plugin</artifactId>
520                     <versionRange>[2.0,)</versionRange>
521                     <goals>
522                       <goal>check</goal>
523                     </goals>
524                   </pluginExecutionFilter>
525                   <action>
526                     <ignore/>
527                   </action>
528                 </pluginExecution>
529               </pluginExecutions>
530             </lifecycleMappingMetadata>
531           </configuration>
532         </plugin>
533         <plugin>
534           <groupId>org.codehaus.enunciate</groupId>
535           <artifactId>maven-enunciate-plugin</artifactId>
536           <version>${enunciate.version}</version>
537           <configuration>
538             <configFile>enunciate.xml</configFile>
539           </configuration>
540           <executions>
541             <execution>
542               <goals>
543                 <goal>docs</goal>
544               </goals>
545             </execution>
546           </executions>
547         </plugin>
548         <plugin>
549           <groupId>org.apache.maven.plugins</groupId>
550           <artifactId>maven-compiler-plugin</artifactId>
551           <version>${compiler.version}</version>
552           <configuration>
553             <source>1.6</source>
554             <target>1.6</target>
555           </configuration>
556         </plugin>
557         <plugin>
558           <groupId>org.apache.maven.plugins</groupId>
559           <artifactId>maven-javadoc-plugin</artifactId>
560           <version>2.8.1</version>
561           <configuration>
562             <doclet>org.jboss.apiviz.APIviz</doclet>
563             <docletArtifact>
564               <groupId>org.jboss.apiviz</groupId>
565               <artifactId>apiviz</artifactId>
566               <version>1.3.2.GA</version>
567             </docletArtifact>
568             <finalName>${project.artifactId}-${build.suffix}</finalName>
569             <useStandardDocletOptions>true</useStandardDocletOptions>
570             <charset>UTF-8</charset>
571             <encoding>UTF-8</encoding>
572             <docencoding>UTF-8</docencoding>
573             <breakiterator>true</breakiterator>
574             <version>true</version>
575             <author>true</author>
576             <keywords>true</keywords>
577             <excludePackageNames>net.sf.jnetlib.*:cern.*:corejava:*.internal:edu.uci.*</excludePackageNames>
578           </configuration>
579         </plugin>
580         <plugin>
581           <groupId>org.apache.maven.plugins</groupId>
582           <artifactId>maven-jxr-plugin</artifactId>
583           <version>2.3</version>
584           <configuration>
585             <aggregate>true</aggregate>
586             <linkJavadoc>true</linkJavadoc>
587             <javadocDir>target/apidocs</javadocDir>
588           </configuration>
589         </plugin>
590       </plugins>
591     </pluginManagement>
592   </build>
593
594   <dependencies>
595     <dependency>
596       <groupId>org.slf4j</groupId>
597       <artifactId>jcl-over-slf4j</artifactId>
598       <version>${slf4j.version}</version>
599     </dependency>
600     <dependency>
601       <groupId>org.slf4j</groupId>
602       <artifactId>slf4j-api</artifactId>
603       <version>${slf4j.version}</version>
604     </dependency>
605     <dependency>
606       <groupId>org.slf4j</groupId>
607       <artifactId>log4j-over-slf4j</artifactId>
608       <version>${slf4j.version}</version>
609     </dependency>
610     <dependency>
611       <groupId>ch.qos.logback</groupId>
612       <artifactId>logback-core</artifactId>
613       <version>${logback.version}</version>
614     </dependency>
615     <dependency>
616       <groupId>ch.qos.logback</groupId>
617       <artifactId>logback-classic</artifactId>
618       <version>${logback.version}</version>
619     </dependency>
620     <dependency>
621       <groupId>org.codehaus.jackson</groupId>
622       <artifactId>jackson-mapper-asl</artifactId>
623       <version>${jackson.version}</version>
624     </dependency>
625     <dependency>
626       <groupId>org.codehaus.jackson</groupId>
627       <artifactId>jackson-core-asl</artifactId>
628       <version>${jackson.version}</version>
629     </dependency>
630     <dependency>
631       <groupId>org.codehaus.jackson</groupId>
632       <artifactId>jackson-jaxrs</artifactId>
633       <version>${jackson.version}</version>
634     </dependency>
635     <dependency>
636       <groupId>org.codehaus.jackson</groupId>
637       <artifactId>jackson-xc</artifactId>
638       <version>${jackson.version}</version>
639     </dependency>
640     <dependency>
641       <groupId>org.codehaus.jettison</groupId>
642       <artifactId>jettison</artifactId>
643       <version>1.3.3</version>
644     </dependency>
645     <dependency>
646       <groupId>commons-io</groupId>
647       <artifactId>commons-io</artifactId>
648       <version>2.3</version>
649     </dependency>
650     <dependency>
651       <groupId>commons-fileupload</groupId>
652       <artifactId>commons-fileupload</artifactId>
653       <version>1.2.2</version>
654     </dependency>
655     <dependency>
656       <groupId>equinoxSDK381</groupId>
657       <artifactId>javax.servlet</artifactId>
658       <version>3.0.0.v201112011016</version>
659     </dependency>
660     <dependency>
661       <groupId>equinoxSDK381</groupId>
662       <artifactId>javax.servlet.jsp</artifactId>
663       <version>2.2.0.v201112011158</version>
664     </dependency>
665     <dependency>
666       <groupId>equinoxSDK381</groupId>
667       <artifactId>org.eclipse.equinox.ds</artifactId>
668       <version>1.4.0.v20120522-1841</version>
669     </dependency>
670     <dependency>
671       <groupId>equinoxSDK381</groupId>
672       <artifactId>org.eclipse.equinox.util</artifactId>
673       <version>1.0.400.v20120522-2049</version>
674     </dependency>
675     <dependency>
676       <groupId>equinoxSDK381</groupId>
677       <artifactId>org.eclipse.osgi.services</artifactId>
678       <version>3.3.100.v20120522-1822</version>
679     </dependency>
680     <dependency>
681       <groupId>equinoxSDK381</groupId>
682       <artifactId>org.eclipse.osgi</artifactId>
683       <version>3.8.1.v20120830-144521</version>
684     </dependency>
685     <dependency>
686       <groupId>equinoxSDK381</groupId>
687       <artifactId>org.apache.felix.gogo.command</artifactId>
688       <version>0.8.0.v201108120515</version>
689     </dependency>
690     <dependency>
691       <groupId>equinoxSDK381</groupId>
692       <artifactId>org.apache.felix.gogo.runtime</artifactId>
693       <version>0.8.0.v201108120515</version>
694     </dependency>
695     <dependency>
696       <groupId>equinoxSDK381</groupId>
697       <artifactId>org.apache.felix.gogo.shell</artifactId>
698       <version>0.8.0.v201110170705</version>
699     </dependency>
700     <dependency>
701       <groupId>equinoxSDK381</groupId>
702       <artifactId>org.eclipse.equinox.cm</artifactId>
703       <version>1.0.400.v20120522-1841</version>
704     </dependency>
705     <dependency>
706       <groupId>equinoxSDK381</groupId>
707       <artifactId>org.eclipse.equinox.console</artifactId>
708       <version>1.0.0.v20120522-1841</version>
709     </dependency>
710     <dependency>
711       <groupId>equinoxSDK381</groupId>
712       <artifactId>org.eclipse.equinox.launcher</artifactId>
713       <version>1.3.0.v20120522-1813</version>
714     </dependency>
715     <!-- Gemini Web -->
716     <dependency>
717       <groupId>geminiweb</groupId>
718       <artifactId>org.eclipse.gemini.web.core</artifactId>
719       <version>${geminiweb.version}</version>
720     </dependency>
721     <dependency>
722       <groupId>geminiweb</groupId>
723       <artifactId>org.eclipse.gemini.web.extender</artifactId>
724       <version>${geminiweb.version}</version>
725     </dependency>
726     <dependency>
727       <groupId>geminiweb</groupId>
728       <artifactId>org.eclipse.gemini.web.tomcat</artifactId>
729       <version>${geminiweb.version}</version>
730     </dependency>
731     <dependency>
732       <groupId>geminiweb</groupId>
733       <artifactId>org.eclipse.virgo.kernel.equinox.extensions</artifactId>
734       <version>${virgo.version}</version>
735     </dependency>
736     <dependency>
737       <groupId>geminiweb</groupId>
738       <artifactId>org.eclipse.virgo.util.common</artifactId>
739       <version>${virgo.version}</version>
740     </dependency>
741     <dependency>
742       <groupId>geminiweb</groupId>
743       <artifactId>org.eclipse.virgo.util.io</artifactId>
744       <version>${virgo.version}</version>
745     </dependency>
746     <dependency>
747       <groupId>geminiweb</groupId>
748       <artifactId>org.eclipse.virgo.util.math</artifactId>
749       <version>${virgo.version}</version>
750     </dependency>
751     <dependency>
752       <groupId>geminiweb</groupId>
753       <artifactId>org.eclipse.virgo.util.osgi</artifactId>
754       <version>${virgo.version}</version>
755     </dependency>
756     <dependency>
757       <groupId>geminiweb</groupId>
758       <artifactId>org.eclipse.virgo.util.osgi.manifest</artifactId>
759       <version>${virgo.version}</version>
760     </dependency>
761     <dependency>
762       <groupId>geminiweb</groupId>
763       <artifactId>org.eclipse.virgo.util.parser.manifest</artifactId>
764       <version>${virgo.version}</version>
765     </dependency>
766     <dependency>
767       <groupId>org.apache.felix</groupId>
768       <artifactId>org.apache.felix.dependencymanager</artifactId>
769       <version>3.1.0</version>
770     </dependency>
771     <dependency>
772       <groupId>org.apache.felix</groupId>
773       <artifactId>org.apache.felix.dependencymanager.shell</artifactId>
774       <version>3.0.1</version>
775     </dependency>
776     <dependency>
777       <groupId>com.google.code.gson</groupId>
778       <artifactId>gson</artifactId>
779       <version>2.1</version>
780       <scope>compile</scope>
781     </dependency>
782     <dependency>
783       <groupId>org.jboss.spec.javax.transaction</groupId>
784       <artifactId>jboss-transaction-api_1.1_spec</artifactId>
785       <version>1.0.1.Final</version>
786     </dependency>
787     <dependency>
788       <groupId>org.apache.felix</groupId>
789       <artifactId>org.apache.felix.fileinstall</artifactId>
790       <version>3.1.6</version>
791     </dependency>
792     <dependency>
793       <groupId>org.apache.commons</groupId>
794       <artifactId>commons-lang3</artifactId>
795       <version>${commons.lang.version}</version>
796     </dependency>
797     <dependency>
798       <groupId>virgomirror</groupId>
799       <artifactId>org.eclipse.jdt.core.compiler.batch</artifactId>
800       <version>3.8.0.I20120518-2145</version>
801     </dependency>
802     <dependency>
803       <groupId>eclipselink</groupId>
804       <artifactId>javax.persistence</artifactId>
805       <version>2.0.4.v201112161009</version>
806     </dependency>
807     <dependency>
808       <groupId>orbit</groupId>
809       <artifactId>javax.activation</artifactId>
810       <version>1.1.0.v201211130549</version>
811     </dependency>
812     <dependency>
813       <groupId>orbit</groupId>
814       <artifactId>javax.annotation</artifactId>
815       <version>1.1.0.v201209060031</version>
816     </dependency>
817     <dependency>
818       <groupId>orbit</groupId>
819       <artifactId>javax.ejb</artifactId>
820       <version>3.1.1.v201204261316</version>
821     </dependency>
822     <dependency>
823       <groupId>orbit</groupId>
824       <artifactId>javax.el</artifactId>
825       <version>2.2.0.v201108011116</version>
826     </dependency>
827     <dependency>
828       <groupId>orbit</groupId>
829       <artifactId>javax.mail.glassfish</artifactId>
830       <version>1.4.1.v201108011116</version>
831     </dependency>
832     <dependency>
833       <groupId>orbit</groupId>
834       <artifactId>javax.xml.rpc</artifactId>
835       <version>1.1.0.v201005080400</version>
836     </dependency>
837     <dependency>
838       <groupId>orbit</groupId>
839       <artifactId>org.apache.catalina</artifactId>
840       <version>7.0.32.v201211201336</version>
841     </dependency>
842     <dependency>
843       <groupId>orbit</groupId>
844       <artifactId>org.apache.catalina.ha</artifactId>
845       <version>7.0.32.v201211201952</version>
846     </dependency>
847     <dependency>
848       <groupId>orbit</groupId>
849       <artifactId>org.apache.catalina.tribes</artifactId>
850       <version>7.0.32.v201211201952</version>
851     </dependency>
852     <dependency>
853       <groupId>orbit</groupId>
854       <artifactId>org.apache.coyote</artifactId>
855       <version>7.0.32.v201211201952</version>
856     </dependency>
857     <dependency>
858       <groupId>orbit</groupId>
859       <artifactId>org.apache.el</artifactId>
860       <version>7.0.32.v201211081135</version>
861     </dependency>
862     <dependency>
863       <groupId>orbit</groupId>
864       <artifactId>org.apache.jasper</artifactId>
865       <version>7.0.32.v201211201952</version>
866     </dependency>
867     <dependency>
868       <groupId>orbit</groupId>
869       <artifactId>org.apache.juli.extras</artifactId>
870       <version>7.0.32.v201211081135</version>
871     </dependency>
872     <dependency>
873       <groupId>orbit</groupId>
874       <artifactId>org.apache.tomcat.api</artifactId>
875       <version>7.0.32.v201211081135</version>
876     </dependency>
877     <dependency>
878       <groupId>orbit</groupId>
879       <artifactId>org.apache.tomcat.util</artifactId>
880       <version>7.0.32.v201211201952</version>
881     </dependency>
882     <dependency>
883       <groupId>orbit</groupId>
884       <artifactId>javax.servlet.jsp.jstl</artifactId>
885       <version>1.2.0.v201105211821</version>
886     </dependency>
887     <dependency>
888       <groupId>orbit</groupId>
889       <artifactId>javax.servlet.jsp.jstl.impl</artifactId>
890       <version>1.2.0.v201210211230</version>
891     </dependency>
892     <dependency>
893       <groupId>eclipselink</groupId>
894       <artifactId>javax.resource</artifactId>
895       <version>1.5.0.v200906010428</version>
896     </dependency>
897     <!-- Add Pax Exam -->
898     <dependency>
899       <groupId>org.ops4j.pax.exam</groupId>
900       <artifactId>pax-exam-container-native</artifactId>
901       <version>${exam.version}</version>
902       <scope>test</scope>
903     </dependency>
904     <dependency>
905       <groupId>org.ops4j.pax.exam</groupId>
906       <artifactId>pax-exam-junit4</artifactId>
907       <version>${exam.version}</version>
908       <scope>test</scope>
909     </dependency>
910     <dependency>
911       <groupId>org.ops4j.pax.exam</groupId>
912       <artifactId>pax-exam-link-mvn</artifactId>
913       <version>${exam.version}</version>
914       <scope>test</scope>
915     </dependency>
916     <dependency>
917       <groupId>org.ops4j.pax.url</groupId>
918       <artifactId>pax-url-aether</artifactId>
919       <version>${url.version}</version>
920       <scope>test</scope>
921     </dependency>
922     <dependency>
923       <groupId>org.springframework</groupId>
924       <artifactId>org.springframework.asm</artifactId>
925       <version>${spring.version}</version>
926     </dependency>
927     <dependency>
928       <groupId>org.springframework</groupId>
929       <artifactId>org.springframework.aop</artifactId>
930       <version>${spring.version}</version>
931     </dependency>
932     <dependency>
933       <groupId>org.springframework</groupId>
934       <artifactId>org.springframework.context</artifactId>
935       <version>${spring.version}</version>
936     </dependency>
937     <dependency>
938       <groupId>org.springframework</groupId>
939       <artifactId>org.springframework.context.support</artifactId>
940       <version>${spring.version}</version>
941     </dependency>
942     <dependency>
943       <groupId>org.springframework</groupId>
944       <artifactId>org.springframework.core</artifactId>
945       <version>${spring.version}</version>
946     </dependency>
947     <dependency>
948       <groupId>org.springframework</groupId>
949       <artifactId>org.springframework.beans</artifactId>
950       <version>${spring.version}</version>
951     </dependency>
952     <dependency>
953       <groupId>org.springframework</groupId>
954       <artifactId>org.springframework.expression</artifactId>
955       <version>${spring.version}</version>
956     </dependency>
957     <dependency>
958       <groupId>org.springframework</groupId>
959       <artifactId>org.springframework.web</artifactId>
960       <version>${spring.version}</version>
961     </dependency>
962     <dependency>
963       <groupId>org.aopalliance</groupId>
964       <artifactId>com.springsource.org.aopalliance</artifactId>
965       <version>1.0.0</version>
966     </dependency>
967     <dependency>
968       <groupId>org.springframework</groupId>
969       <artifactId>org.springframework.web.servlet</artifactId>
970       <version>${spring.version}</version>
971     </dependency>
972     <!-- Spring security -->
973     <dependency>
974       <groupId>org.springframework.security</groupId>
975       <artifactId>spring-security-config</artifactId>
976       <version>${spring-security.version}</version>
977     </dependency>
978     <dependency>
979       <groupId>org.springframework.security</groupId>
980       <artifactId>spring-security-core</artifactId>
981       <version>${spring-security.version}</version>
982     </dependency>
983     <dependency>
984       <groupId>org.springframework.security</groupId>
985       <artifactId>spring-security-web</artifactId>
986       <version>${spring-security.version}</version>
987     </dependency>
988     <dependency>
989       <groupId>org.springframework.security</groupId>
990       <artifactId>spring-security-taglibs</artifactId>
991       <version>${spring-security.version}</version>
992     </dependency>
993     <dependency>
994       <groupId>org.springframework</groupId>
995       <artifactId>org.springframework.transaction</artifactId>
996       <version>${spring-security.version}</version>
997     </dependency>
998     <!-- Visual VM hook -->
999     <dependency>
1000       <groupId>org.ow2.chameleon.management</groupId>
1001       <artifactId>chameleon-mbeans</artifactId>
1002       <version>1.0.0</version>
1003     </dependency>
1004     <!-- Jersey for JAXRS -->
1005     <dependency>
1006       <groupId>com.sun.jersey</groupId>
1007       <artifactId>jersey-core</artifactId>
1008       <version>${jersey.version}</version>
1009     </dependency>
1010     <dependency>
1011       <groupId>com.sun.jersey</groupId>
1012       <artifactId>jersey-server</artifactId>
1013       <version>${jersey.version}</version>
1014     </dependency>
1015     <dependency>
1016       <groupId>com.sun.jersey</groupId>
1017       <artifactId>jersey-client</artifactId>
1018       <version>${jersey.version}</version>
1019     </dependency>
1020     <dependency>
1021       <groupId>com.sun.jersey</groupId>
1022       <artifactId>jersey-json</artifactId>
1023       <version>${jersey.version}</version>
1024     </dependency>
1025     <dependency>
1026         <groupId>org.ow2.asm</groupId>
1027         <artifactId>asm-all</artifactId>
1028         <version>4.1</version>
1029     </dependency>
1030   </dependencies>
1031 </project>