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