Merge "Remove unused class member SAVE"
[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     <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   </properties>
62
63   <pluginRepositories>
64     <pluginRepository>
65       <id>central</id>
66       <name>maven repo1</name>
67       <url>http://repo1.maven.org/maven2</url>
68     </pluginRepository>
69   </pluginRepositories>
70
71   <profiles>
72     <profile>
73       <id>notduringrelease</id>
74       <activation>
75         <property>
76           <name>!DOINGRELEASE</name>
77         </property>
78       </activation>
79       <dependencies>
80         <!-- yangtools -->
81
82         <dependency>
83           <groupId>org.opendaylight.yangtools</groupId>
84           <artifactId>yang-binding</artifactId>
85           <version>${yang.version}</version>
86         </dependency>
87         <dependency>
88           <groupId>org.opendaylight.yangtools</groupId>
89           <artifactId>yang-common</artifactId>
90           <version>${yang.version}</version>
91         </dependency>
92         <dependency>
93           <groupId>org.opendaylight.yangtools</groupId>
94           <artifactId>yang-data-api</artifactId>
95           <version>${yang.version}</version>
96         </dependency>
97         <dependency>
98           <groupId>org.opendaylight.yangtools</groupId>
99           <artifactId>yang-model-api</artifactId>
100           <version>${yang.version}</version>
101         </dependency>
102         <dependency>
103           <groupId>org.opendaylight.yangtools</groupId>
104           <artifactId>yang-data-util</artifactId>
105           <version>${yang.version}</version>
106         </dependency>
107
108         <!-- Models -->
109
110         <dependency>
111           <groupId>org.opendaylight.yangtools.model</groupId>
112           <artifactId>ietf-inet-types</artifactId>
113           <version>${ietf-inet-types.version}</version>
114         </dependency>
115         <dependency>
116           <groupId>org.opendaylight.yangtools.model</groupId>
117           <artifactId>ietf-yang-types</artifactId>
118           <version>${ietf-yang-types.version}</version>
119         </dependency>
120         <dependency>
121           <groupId>org.opendaylight.yangtools</groupId>
122           <artifactId>yang-ext</artifactId>
123           <version>${yang-ext.version}</version>
124         </dependency>
125
126         <!-- Other MDSAL dependencies -->
127
128         <dependency>
129           <groupId>com.google.guava</groupId>
130           <artifactId>guava</artifactId>
131           <version>${guava.version}</version>
132         </dependency>
133         <dependency>
134           <groupId>org.javassist</groupId>
135           <artifactId>javassist</artifactId>
136           <version>${javassist.version}</version>
137         </dependency>
138       </dependencies>
139       <properties>
140         <build.suffix>${project.version}</build.suffix>
141       </properties>
142     </profile>
143     <profile>
144       <id>viewbuild</id>
145       <activation>
146         <activeByDefault>true</activeByDefault>
147       </activation>
148       <properties>
149         <build.suffix>${project.version}</build.suffix>
150       </properties>
151     </profile>
152     <profile>
153       <id>jenkins</id>
154       <activation>
155         <property>
156           <name>BUILDSUFFIX</name>
157         </property>
158       </activation>
159       <properties>
160         <build.suffix>${BUILDSUFFIX}</build.suffix>
161       </properties>
162     </profile>
163     <profile>
164       <id>fastreassembly</id>
165       <build>
166         <plugins>
167           <plugin>
168             <groupId>org.apache.maven.plugins</groupId>
169             <artifactId>maven-dependency-plugin</artifactId>
170             <version>2.4</version>
171             <executions>
172               <execution>
173                 <id>copyfastreassembly</id>
174                 <phase>install</phase>
175                 <goals>
176                   <goal>copy</goal>
177                 </goals>
178                 <configuration>
179                   <artifactItems>
180                     <artifactItem>
181                       <groupId>${project.groupId}</groupId>
182                       <artifactId>${project.artifactId}</artifactId>
183                       <version>${project.version}</version>
184                       <destFileName>${project.groupId}.${project.artifactId}-${project.version}.jar</destFileName>
185                     </artifactItem>
186                   </artifactItems>
187                   <outputDirectory>${fastreassembly.directory}</outputDirectory>
188                 </configuration>
189               </execution>
190             </executions>
191           </plugin>
192         </plugins>
193       </build>
194     </profile>
195   </profiles>
196
197   <repositories>
198     <!-- EBR release -->
199     <!-- http://repository.springsource.com/maven/bundles/release -->
200     <repository>
201       <id>ebr-bundles-release</id>
202       <name>ebr-bundles-release</name>
203       <url>${nexusproxy}/repositories/ebr-bundles-release/</url>
204     </repository>
205     <!-- EBR external -->
206     <!-- http://repository.springsource.com/maven/bundles/external -->
207     <repository>
208       <id>ebr-bundles-external</id>
209       <name>ebr-bundles-external</name>
210       <url>${nexusproxy}/repositories/ebr-bundles-external/</url>
211     </repository>
212     <repository>
213       <id>central</id>
214       <name>central</name>
215       <url>http://repo1.maven.org/maven2</url>
216       <snapshots>
217         <enabled>false</enabled>
218       </snapshots>
219       <releases>
220           <enabled>true</enabled>
221       </releases>
222     </repository>
223     <!-- Pax mirror -->
224     <!-- https://oss.sonatype.org/content/repositories/ops4j-releases -->
225     <repository>
226       <id>ops4j-releases</id>
227       <name>ops4j-releases</name>
228       <url>${nexusproxy}/repositories/ops4j-releases/</url>
229     </repository>
230     <!-- Third Packages hosted in local maven because not available in
231          other places -->
232     <repository>
233       <id>thirdparty</id>
234       <name>thirdparty</name>
235       <url>${nexusproxy}/repositories/thirdparty/</url>
236     </repository>
237     <!-- Jboss mirror -->
238     <!-- https://repository.jboss.org/nexus/content/repositories/releases -->
239     <repository>
240       <id>jboss.releases</id>
241       <name>jboss.releases</name>
242       <url>${nexusproxy}/repositories/jboss.releases/</url>
243     </repository>
244     <!-- OpenDayLight Released artifact -->
245     <repository>
246       <id>opendaylight-release</id>
247       <name>opendaylight-release</name>
248       <url>${nexusproxy}/repositories/opendaylight.release/</url>
249     </repository>
250     <!-- OpenDayLight Snapshot artifact -->
251     <repository>
252       <id>opendaylight-snapshot</id>
253       <name>opendaylight-snapshot</name>
254       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
255     </repository>
256   </repositories>
257   <distributionManagement>
258     <!-- OpenDayLight Released artifact -->
259     <repository>
260       <id>opendaylight-release</id>
261       <url>${nexusproxy}/repositories/opendaylight.release/</url>
262     </repository>
263     <!-- OpenDayLight Snapshot artifact -->
264     <snapshotRepository>
265       <id>opendaylight-snapshot</id>
266       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
267     </snapshotRepository>
268     <!-- Site deployment -->
269     <site>
270       <id>website</id>
271       <url>${sitedeploy}</url>
272     </site>
273   </distributionManagement>
274
275   <reporting>
276     <excludeDefaults>true</excludeDefaults>
277     <outputDirectory>${project.build.directory}/site</outputDirectory>
278     <plugins>
279       <plugin>
280         <groupId>org.apache.maven.plugins</groupId>
281         <artifactId>maven-project-info-reports-plugin</artifactId>
282         <version>${projectinfo}</version>
283         <configuration>
284           <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
285           <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
286         </configuration>
287         <reportSets>
288           <reportSet>
289             <reports>
290               <report>index</report>
291               <report>project-team</report>
292               <report>license</report>
293               <report>mailing-list</report>
294               <report>plugin-management</report>
295               <report>cim</report>
296               <report>issue-tracking</report>
297               <report>scm</report>
298               <report>summary</report>
299             </reports>
300           </reportSet>
301         </reportSets>
302       </plugin>
303       <plugin>
304         <groupId>org.apache.maven.plugins</groupId>
305         <artifactId>maven-jxr-plugin</artifactId>
306         <version>2.3</version>
307         <configuration>
308           <aggregate>true</aggregate>
309           <linkJavadoc>true</linkJavadoc>
310         </configuration>
311       </plugin>
312       <plugin>
313         <groupId>org.apache.maven.plugins</groupId>
314         <artifactId>maven-checkstyle-plugin</artifactId>
315         <version>${checkstyle.version}</version>
316       </plugin>
317       <plugin>
318         <groupId>org.apache.maven.plugins</groupId>
319         <artifactId>maven-javadoc-plugin</artifactId>
320         <version>2.8.1</version>
321         <configuration>
322           <doclet>org.jboss.apiviz.APIviz</doclet>
323           <docletArtifact>
324             <groupId>org.jboss.apiviz</groupId>
325             <artifactId>apiviz</artifactId>
326             <version>1.3.2.GA</version>
327           </docletArtifact>
328           <finalName>${project.artifactId}-${build.suffix}</finalName>
329           <useStandardDocletOptions>true</useStandardDocletOptions>
330           <charset>UTF-8</charset>
331           <encoding>UTF-8</encoding>
332           <docencoding>UTF-8</docencoding>
333           <breakiterator>true</breakiterator>
334           <version>true</version>
335           <author>true</author>
336           <keywords>true</keywords>
337           <excludePackageNames>*.internal:edu.uci.*</excludePackageNames>
338         </configuration>
339       </plugin>
340     </plugins>
341   </reporting>
342
343   <build>
344     <plugins>
345       <plugin>
346         <groupId>org.codehaus.mojo</groupId>
347         <artifactId>properties-maven-plugin</artifactId>
348         <version>${propertymavenplugin.version}</version>
349         <executions>
350           <execution>
351             <goals>
352               <goal>set-system-properties</goal>
353             </goals>
354             <configuration>
355               <properties>
356                 <property>
357                   <name>logback.configurationFile</name>
358                   <value>${project.parent.basedir}/logback.xml</value>
359                 </property>
360               </properties>
361             </configuration>
362           </execution>
363         </executions>
364       </plugin>
365       <plugin>
366         <groupId>com.googlecode.maven-java-formatter-plugin</groupId>
367         <artifactId>maven-java-formatter-plugin</artifactId>
368         <version>0.3.1</version>
369         <configuration>
370           <compilerSource>1.6</compilerSource>
371           <compilerCompliance>1.6</compilerCompliance>
372           <compilerTargetPlatform>1.6</compilerTargetPlatform>
373           <configFile>${project.parent.basedir}/sun_coding_style.xml</configFile>
374         </configuration>
375       </plugin>
376       <plugin>
377         <groupId>org.apache.maven.plugins</groupId>
378         <artifactId>maven-checkstyle-plugin</artifactId>
379         <version>${checkstyle.version}</version>
380           <dependencies>
381             <dependency>
382               <groupId>org.opendaylight.controller</groupId>
383               <artifactId>checkstyle</artifactId>
384               <version>0.0.1-SNAPSHOT</version>
385             </dependency>
386           </dependencies>
387         <executions>
388           <execution>
389             <phase>process-sources</phase>
390             <goals>
391               <goal>check</goal>
392             </goals>
393           </execution>
394         </executions>
395         <configuration>
396           <failsOnError>true</failsOnError>
397           <configLocation>controller/space_and_tabs_checks.xml</configLocation>
398           <consoleOutput>true</consoleOutput>
399           <includeTestSourceDirectory>true</includeTestSourceDirectory>
400           <sourceDirectory>${project.basedir}</sourceDirectory>
401           <includes>**\/*.java,**\/*.xml,**\/*.ini,**\/*.sh,**\/*.bat</includes>
402           <excludes>target\/</excludes>
403         </configuration>
404       </plugin>
405       <plugin>
406         <groupId>org.apache.maven.plugins</groupId>
407         <artifactId>maven-failsafe-plugin</artifactId>
408         <version>${failsafe.version}</version>
409         <configuration>
410           <argLine>${testvm.argLine}</argLine>
411         </configuration>
412         <executions>
413           <execution>
414             <id>failsafe-integration-tests</id>
415             <phase>integration-test</phase>
416             <goals>
417               <goal>integration-test</goal>
418             </goals>
419           </execution>
420           <execution>
421             <id>failsafe-verify</id>
422             <phase>verify</phase>
423             <goals>
424               <goal>verify</goal>
425             </goals>
426           </execution>
427         </executions>
428       </plugin>
429       <plugin>
430         <groupId>org.apache.maven.plugins</groupId>
431         <artifactId>maven-surefire-plugin</artifactId>
432         <version>${surefire.version}</version>
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>commons-net</groupId>
645         <artifactId>commons-net</artifactId>
646         <version>3.0.1</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>${commons.lang.version}</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     <dependency>
1019         <groupId>org.ow2.asm</groupId>
1020         <artifactId>asm-all</artifactId>
1021         <version>4.1</version>
1022     </dependency>
1023     <dependency>
1024         <groupId>org.eclipse.persistence</groupId>
1025         <artifactId>org.eclipse.persistence.moxy</artifactId>
1026         <version>2.5.0</version>
1027     </dependency>
1028     <dependency>
1029         <groupId>org.eclipse.persistence</groupId>
1030         <artifactId>org.eclipse.persistence.core</artifactId>
1031         <version>2.5.0</version>
1032     </dependency>
1033     <dependency>
1034         <groupId>org.eclipse.persistence</groupId>
1035         <artifactId>org.eclipse.persistence.antlr</artifactId>
1036         <version>2.5.0</version>
1037     </dependency>
1038   </dependencies>
1039 </project>