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