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