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