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