Add snapshots/releases setting to all maven repos.
[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             <goals>
422               <goal>integration-test</goal>
423             </goals>
424           </execution>
425         </executions>
426       </plugin>
427       <plugin>
428         <groupId>org.apache.maven.plugins</groupId>
429         <artifactId>maven-surefire-plugin</artifactId>
430         <version>${surefire.version}</version>
431         <configuration>
432           <argLine>${testvm.argLine}</argLine>
433         </configuration>
434       </plugin>
435     </plugins>
436     <pluginManagement>
437       <plugins>
438         <plugin>
439           <groupId>org.apache.maven.plugins</groupId>
440           <artifactId>maven-release-plugin</artifactId>
441           <version>${releaseplugin.version}</version>
442         </plugin>
443         <!-- Ignore/Execute plugin execution -->
444         <plugin>
445           <groupId>org.eclipse.m2e</groupId>
446           <artifactId>lifecycle-mapping</artifactId>
447           <version>1.0.0</version>
448           <configuration>
449             <lifecycleMappingMetadata>
450               <pluginExecutions>
451                 <pluginExecution>
452                   <pluginExecutionFilter>
453                     <groupId>org.codehaus.mojo</groupId>
454                     <artifactId>properties-maven-plugin</artifactId>
455                     <versionRange>[0.0,)</versionRange>
456                     <goals>
457                       <goal>set-system-properties</goal>
458                     </goals>
459                   </pluginExecutionFilter>
460                   <action>
461                     <ignore/>
462                   </action>
463                 </pluginExecution>
464                 <pluginExecution>
465                   <pluginExecutionFilter>
466                     <groupId>org.codehaus.enunciate</groupId>
467                     <artifactId>maven-enunciate-plugin</artifactId>
468                     <versionRange>[0.0,)</versionRange>
469                     <goals>
470                       <goal>docs</goal>
471                     </goals>
472                   </pluginExecutionFilter>
473                   <action>
474                     <ignore/>
475                   </action>
476                 </pluginExecution>
477                 <pluginExecution>
478                   <pluginExecutionFilter>
479                     <groupId>org.jacoco</groupId>
480                     <artifactId>jacoco-maven-plugin</artifactId>
481                     <versionRange>[0.0,)</versionRange>
482                     <goals>
483                       <goal>prepare-agent</goal>
484                       <goal>pre-test</goal>
485                       <goal>post-test</goal>
486                     </goals>
487                   </pluginExecutionFilter>
488                   <action>
489                     <ignore/>
490                   </action>
491                 </pluginExecution>
492                 <pluginExecution>
493                   <pluginExecutionFilter>
494                     <groupId>org.ops4j.pax.exam</groupId>
495                     <artifactId>maven-paxexam-plugin</artifactId>
496                     <versionRange>[1.2.4,)</versionRange>
497                     <goals>
498                       <goal>generate-depends-file</goal>
499                     </goals>
500                   </pluginExecutionFilter>
501                   <action>
502                     <ignore/>
503                   </action>
504                 </pluginExecution>
505                 <pluginExecution>
506                   <pluginExecutionFilter>
507                     <groupId>org.apache.maven.plugins</groupId>
508                     <artifactId>maven-checkstyle-plugin</artifactId>
509                     <versionRange>[2.0,)</versionRange>
510                     <goals>
511                       <goal>check</goal>
512                     </goals>
513                   </pluginExecutionFilter>
514                   <action>
515                     <ignore/>
516                   </action>
517                 </pluginExecution>
518               </pluginExecutions>
519             </lifecycleMappingMetadata>
520           </configuration>
521         </plugin>
522         <plugin>
523           <groupId>org.codehaus.enunciate</groupId>
524           <artifactId>maven-enunciate-plugin</artifactId>
525           <version>${enunciate.version}</version>
526           <configuration>
527             <configFile>enunciate.xml</configFile>
528           </configuration>
529           <executions>
530             <execution>
531               <goals>
532                 <goal>docs</goal>
533               </goals>
534             </execution>
535           </executions>
536         </plugin>
537         <plugin>
538           <groupId>org.apache.maven.plugins</groupId>
539           <artifactId>maven-compiler-plugin</artifactId>
540           <version>${compiler.version}</version>
541           <configuration>
542             <source>1.6</source>
543             <target>1.6</target>
544           </configuration>
545         </plugin>
546         <plugin>
547           <groupId>org.apache.maven.plugins</groupId>
548           <artifactId>maven-javadoc-plugin</artifactId>
549           <version>2.8.1</version>
550           <configuration>
551             <doclet>org.jboss.apiviz.APIviz</doclet>
552             <docletArtifact>
553               <groupId>org.jboss.apiviz</groupId>
554               <artifactId>apiviz</artifactId>
555               <version>1.3.2.GA</version>
556             </docletArtifact>
557             <finalName>${project.artifactId}-${build.suffix}</finalName>
558             <useStandardDocletOptions>true</useStandardDocletOptions>
559             <charset>UTF-8</charset>
560             <encoding>UTF-8</encoding>
561             <docencoding>UTF-8</docencoding>
562             <breakiterator>true</breakiterator>
563             <version>true</version>
564             <author>true</author>
565             <keywords>true</keywords>
566             <excludePackageNames>net.sf.jnetlib.*:cern.*:corejava:*.internal:edu.uci.*</excludePackageNames>
567           </configuration>
568         </plugin>
569         <plugin>
570           <groupId>org.apache.maven.plugins</groupId>
571           <artifactId>maven-jxr-plugin</artifactId>
572           <version>2.3</version>
573           <configuration>
574             <aggregate>true</aggregate>
575             <linkJavadoc>true</linkJavadoc>
576             <javadocDir>target/apidocs</javadocDir>
577           </configuration>
578         </plugin>
579       </plugins>
580     </pluginManagement>
581   </build>
582
583   <dependencies>
584     <dependency>
585       <groupId>org.slf4j</groupId>
586       <artifactId>jcl-over-slf4j</artifactId>
587       <version>${slf4j.version}</version>
588     </dependency>
589     <dependency>
590       <groupId>org.slf4j</groupId>
591       <artifactId>slf4j-api</artifactId>
592       <version>${slf4j.version}</version>
593     </dependency>
594     <dependency>
595       <groupId>org.slf4j</groupId>
596       <artifactId>log4j-over-slf4j</artifactId>
597       <version>${slf4j.version}</version>
598     </dependency>
599     <dependency>
600       <groupId>ch.qos.logback</groupId>
601       <artifactId>logback-core</artifactId>
602       <version>${logback.version}</version>
603     </dependency>
604     <dependency>
605       <groupId>ch.qos.logback</groupId>
606       <artifactId>logback-classic</artifactId>
607       <version>${logback.version}</version>
608     </dependency>
609     <dependency>
610       <groupId>org.codehaus.jackson</groupId>
611       <artifactId>jackson-mapper-asl</artifactId>
612       <version>${jackson.version}</version>
613     </dependency>
614     <dependency>
615       <groupId>org.codehaus.jackson</groupId>
616       <artifactId>jackson-core-asl</artifactId>
617       <version>${jackson.version}</version>
618     </dependency>
619     <dependency>
620       <groupId>org.codehaus.jackson</groupId>
621       <artifactId>jackson-jaxrs</artifactId>
622       <version>${jackson.version}</version>
623     </dependency>
624     <dependency>
625       <groupId>org.codehaus.jettison</groupId>
626       <artifactId>jettison</artifactId>
627       <version>1.3.3</version>
628     </dependency>
629     <dependency>
630       <groupId>commons-io</groupId>
631       <artifactId>commons-io</artifactId>
632       <version>2.3</version>
633     </dependency>
634     <dependency>
635       <groupId>commons-fileupload</groupId>
636       <artifactId>commons-fileupload</artifactId>
637       <version>1.2.2</version>
638     </dependency>
639     <dependency>
640       <groupId>equinoxSDK381</groupId>
641       <artifactId>javax.servlet</artifactId>
642       <version>3.0.0.v201112011016</version>
643     </dependency>
644     <dependency>
645       <groupId>equinoxSDK381</groupId>
646       <artifactId>javax.servlet.jsp</artifactId>
647       <version>2.2.0.v201112011158</version>
648     </dependency>
649     <dependency>
650       <groupId>equinoxSDK381</groupId>
651       <artifactId>org.eclipse.equinox.ds</artifactId>
652       <version>1.4.0.v20120522-1841</version>
653     </dependency>
654     <dependency>
655       <groupId>equinoxSDK381</groupId>
656       <artifactId>org.eclipse.equinox.util</artifactId>
657       <version>1.0.400.v20120522-2049</version>
658     </dependency>
659     <dependency>
660       <groupId>equinoxSDK381</groupId>
661       <artifactId>org.eclipse.osgi.services</artifactId>
662       <version>3.3.100.v20120522-1822</version>
663     </dependency>
664     <dependency>
665       <groupId>equinoxSDK381</groupId>
666       <artifactId>org.eclipse.osgi</artifactId>
667       <version>3.8.1.v20120830-144521</version>
668     </dependency>
669     <dependency>
670       <groupId>equinoxSDK381</groupId>
671       <artifactId>org.apache.felix.gogo.command</artifactId>
672       <version>0.8.0.v201108120515</version>
673     </dependency>
674     <dependency>
675       <groupId>equinoxSDK381</groupId>
676       <artifactId>org.apache.felix.gogo.runtime</artifactId>
677       <version>0.8.0.v201108120515</version>
678     </dependency>
679     <dependency>
680       <groupId>equinoxSDK381</groupId>
681       <artifactId>org.apache.felix.gogo.shell</artifactId>
682       <version>0.8.0.v201110170705</version>
683     </dependency>
684     <dependency>
685       <groupId>equinoxSDK381</groupId>
686       <artifactId>org.eclipse.equinox.cm</artifactId>
687       <version>1.0.400.v20120522-1841</version>
688     </dependency>
689     <dependency>
690       <groupId>equinoxSDK381</groupId>
691       <artifactId>org.eclipse.equinox.console</artifactId>
692       <version>1.0.0.v20120522-1841</version>
693     </dependency>
694     <dependency>
695       <groupId>equinoxSDK381</groupId>
696       <artifactId>org.eclipse.equinox.launcher</artifactId>
697       <version>1.3.0.v20120522-1813</version>
698     </dependency>
699     <!-- Gemini Web -->
700     <dependency>
701       <groupId>geminiweb</groupId>
702       <artifactId>org.eclipse.gemini.web.core</artifactId>
703       <version>${geminiweb.version}</version>
704     </dependency>
705     <dependency>
706       <groupId>geminiweb</groupId>
707       <artifactId>org.eclipse.gemini.web.extender</artifactId>
708       <version>${geminiweb.version}</version>
709     </dependency>
710     <dependency>
711       <groupId>geminiweb</groupId>
712       <artifactId>org.eclipse.gemini.web.tomcat</artifactId>
713       <version>${geminiweb.version}</version>
714     </dependency>
715     <dependency>
716       <groupId>geminiweb</groupId>
717       <artifactId>org.eclipse.virgo.kernel.equinox.extensions</artifactId>
718       <version>${virgo.version}</version>
719     </dependency>
720     <dependency>
721       <groupId>geminiweb</groupId>
722       <artifactId>org.eclipse.virgo.util.common</artifactId>
723       <version>${virgo.version}</version>
724     </dependency>
725     <dependency>
726       <groupId>geminiweb</groupId>
727       <artifactId>org.eclipse.virgo.util.io</artifactId>
728       <version>${virgo.version}</version>
729     </dependency>
730     <dependency>
731       <groupId>geminiweb</groupId>
732       <artifactId>org.eclipse.virgo.util.math</artifactId>
733       <version>${virgo.version}</version>
734     </dependency>
735     <dependency>
736       <groupId>geminiweb</groupId>
737       <artifactId>org.eclipse.virgo.util.osgi</artifactId>
738       <version>${virgo.version}</version>
739     </dependency>
740     <dependency>
741       <groupId>geminiweb</groupId>
742       <artifactId>org.eclipse.virgo.util.osgi.manifest</artifactId>
743       <version>${virgo.version}</version>
744     </dependency>
745     <dependency>
746       <groupId>geminiweb</groupId>
747       <artifactId>org.eclipse.virgo.util.parser.manifest</artifactId>
748       <version>${virgo.version}</version>
749     </dependency>
750     <dependency>
751       <groupId>org.apache.felix</groupId>
752       <artifactId>org.apache.felix.dependencymanager</artifactId>
753       <version>3.1.0</version>
754     </dependency>
755     <dependency>
756       <groupId>org.apache.felix</groupId>
757       <artifactId>org.apache.felix.dependencymanager.shell</artifactId>
758       <version>3.0.1</version>
759     </dependency>
760     <dependency>
761       <groupId>com.google.code.gson</groupId>
762       <artifactId>gson</artifactId>
763       <version>2.1</version>
764       <scope>compile</scope>
765     </dependency>
766     <dependency>
767       <groupId>org.jboss.spec.javax.transaction</groupId>
768       <artifactId>jboss-transaction-api_1.1_spec</artifactId>
769       <version>1.0.1.Final</version>
770     </dependency>
771     <dependency>
772       <groupId>org.apache.felix</groupId>
773       <artifactId>org.apache.felix.fileinstall</artifactId>
774       <version>3.1.6</version>
775     </dependency>
776     <dependency>
777       <groupId>org.apache.commons</groupId>
778       <artifactId>commons-lang3</artifactId>
779       <version>3.1</version>
780     </dependency>
781     <dependency>
782       <groupId>virgomirror</groupId>
783       <artifactId>org.eclipse.jdt.core.compiler.batch</artifactId>
784       <version>3.8.0.I20120518-2145</version>
785     </dependency>
786     <dependency>
787       <groupId>eclipselink</groupId>
788       <artifactId>javax.persistence</artifactId>
789       <version>2.0.4.v201112161009</version>
790     </dependency>
791     <dependency>
792       <groupId>orbit</groupId>
793       <artifactId>javax.activation</artifactId>
794       <version>1.1.0.v201211130549</version>
795     </dependency>
796     <dependency>
797       <groupId>orbit</groupId>
798       <artifactId>javax.annotation</artifactId>
799       <version>1.1.0.v201209060031</version>
800     </dependency>
801     <dependency>
802       <groupId>orbit</groupId>
803       <artifactId>javax.ejb</artifactId>
804       <version>3.1.1.v201204261316</version>
805     </dependency>
806     <dependency>
807       <groupId>orbit</groupId>
808       <artifactId>javax.el</artifactId>
809       <version>2.2.0.v201108011116</version>
810     </dependency>
811     <dependency>
812       <groupId>orbit</groupId>
813       <artifactId>javax.mail.glassfish</artifactId>
814       <version>1.4.1.v201108011116</version>
815     </dependency>
816     <dependency>
817       <groupId>orbit</groupId>
818       <artifactId>javax.xml.rpc</artifactId>
819       <version>1.1.0.v201005080400</version>
820     </dependency>
821     <dependency>
822       <groupId>orbit</groupId>
823       <artifactId>org.apache.catalina</artifactId>
824       <version>7.0.32.v201211201336</version>
825     </dependency>
826     <dependency>
827       <groupId>orbit</groupId>
828       <artifactId>org.apache.catalina.ha</artifactId>
829       <version>7.0.32.v201211201952</version>
830     </dependency>
831     <dependency>
832       <groupId>orbit</groupId>
833       <artifactId>org.apache.catalina.tribes</artifactId>
834       <version>7.0.32.v201211201952</version>
835     </dependency>
836     <dependency>
837       <groupId>orbit</groupId>
838       <artifactId>org.apache.coyote</artifactId>
839       <version>7.0.32.v201211201952</version>
840     </dependency>
841     <dependency>
842       <groupId>orbit</groupId>
843       <artifactId>org.apache.el</artifactId>
844       <version>7.0.32.v201211081135</version>
845     </dependency>
846     <dependency>
847       <groupId>orbit</groupId>
848       <artifactId>org.apache.jasper</artifactId>
849       <version>7.0.32.v201211201952</version>
850     </dependency>
851     <dependency>
852       <groupId>orbit</groupId>
853       <artifactId>org.apache.juli.extras</artifactId>
854       <version>7.0.32.v201211081135</version>
855     </dependency>
856     <dependency>
857       <groupId>orbit</groupId>
858       <artifactId>org.apache.tomcat.api</artifactId>
859       <version>7.0.32.v201211081135</version>
860     </dependency>
861     <dependency>
862       <groupId>orbit</groupId>
863       <artifactId>org.apache.tomcat.util</artifactId>
864       <version>7.0.32.v201211201952</version>
865     </dependency>
866     <dependency>
867       <groupId>orbit</groupId>
868       <artifactId>javax.servlet.jsp.jstl</artifactId>
869       <version>1.2.0.v201105211821</version>
870     </dependency>
871     <dependency>
872       <groupId>orbit</groupId>
873       <artifactId>javax.servlet.jsp.jstl.impl</artifactId>
874       <version>1.2.0.v201210211230</version>
875     </dependency>
876     <dependency>
877       <groupId>eclipselink</groupId>
878       <artifactId>javax.resource</artifactId>
879       <version>1.5.0.v200906010428</version>
880     </dependency>
881     <!-- Add Pax Exam -->
882     <dependency>
883       <groupId>org.ops4j.pax.exam</groupId>
884       <artifactId>pax-exam-container-native</artifactId>
885       <version>${exam.version}</version>
886       <scope>test</scope>
887     </dependency>
888     <dependency>
889       <groupId>org.ops4j.pax.exam</groupId>
890       <artifactId>pax-exam-junit4</artifactId>
891       <version>${exam.version}</version>
892       <scope>test</scope>
893     </dependency>
894     <dependency>
895       <groupId>org.ops4j.pax.exam</groupId>
896       <artifactId>pax-exam-link-mvn</artifactId>
897       <version>${exam.version}</version>
898       <scope>test</scope>
899     </dependency>
900     <dependency>
901       <groupId>org.ops4j.pax.url</groupId>
902       <artifactId>pax-url-aether</artifactId>
903       <version>${url.version}</version>
904       <scope>test</scope>
905     </dependency>
906     <dependency>
907       <groupId>org.springframework</groupId>
908       <artifactId>org.springframework.asm</artifactId>
909       <version>${spring.version}</version>
910     </dependency>
911     <dependency>
912       <groupId>org.springframework</groupId>
913       <artifactId>org.springframework.aop</artifactId>
914       <version>${spring.version}</version>
915     </dependency>
916     <dependency>
917       <groupId>org.springframework</groupId>
918       <artifactId>org.springframework.context</artifactId>
919       <version>${spring.version}</version>
920     </dependency>
921     <dependency>
922       <groupId>org.springframework</groupId>
923       <artifactId>org.springframework.context.support</artifactId>
924       <version>${spring.version}</version>
925     </dependency>
926     <dependency>
927       <groupId>org.springframework</groupId>
928       <artifactId>org.springframework.core</artifactId>
929       <version>${spring.version}</version>
930     </dependency>
931     <dependency>
932       <groupId>org.springframework</groupId>
933       <artifactId>org.springframework.beans</artifactId>
934       <version>${spring.version}</version>
935     </dependency>
936     <dependency>
937       <groupId>org.springframework</groupId>
938       <artifactId>org.springframework.expression</artifactId>
939       <version>${spring.version}</version>
940     </dependency>
941     <dependency>
942       <groupId>org.springframework</groupId>
943       <artifactId>org.springframework.web</artifactId>
944       <version>${spring.version}</version>
945     </dependency>
946     <dependency>
947       <groupId>org.aopalliance</groupId>
948       <artifactId>com.springsource.org.aopalliance</artifactId>
949       <version>1.0.0</version>
950     </dependency>
951     <dependency>
952       <groupId>org.springframework</groupId>
953       <artifactId>org.springframework.web.servlet</artifactId>
954       <version>${spring.version}</version>
955     </dependency>
956     <!-- Spring security -->
957     <dependency>
958       <groupId>org.springframework.security</groupId>
959       <artifactId>spring-security-config</artifactId>
960       <version>${spring-security.version}</version>
961     </dependency>
962     <dependency>
963       <groupId>org.springframework.security</groupId>
964       <artifactId>spring-security-core</artifactId>
965       <version>${spring-security.version}</version>
966     </dependency>
967     <dependency>
968       <groupId>org.springframework.security</groupId>
969       <artifactId>spring-security-web</artifactId>
970       <version>${spring-security.version}</version>
971     </dependency>
972     <dependency>
973       <groupId>org.springframework.security</groupId>
974       <artifactId>spring-security-taglibs</artifactId>
975       <version>${spring-security.version}</version>
976     </dependency>
977     <dependency>
978       <groupId>org.springframework</groupId>
979       <artifactId>org.springframework.transaction</artifactId>
980       <version>${spring-security.version}</version>
981     </dependency>
982     <!-- Visual VM hook -->
983     <dependency>
984       <groupId>org.ow2.chameleon.management</groupId>
985       <artifactId>chameleon-mbeans</artifactId>
986       <version>1.0.0</version>
987     </dependency>
988     <!-- Jersey for JAXRS -->
989     <dependency>
990       <groupId>com.sun.jersey</groupId>
991       <artifactId>jersey-core</artifactId>
992       <version>${jersey.version}</version>
993     </dependency>
994     <dependency>
995       <groupId>com.sun.jersey</groupId>
996       <artifactId>jersey-server</artifactId>
997       <version>${jersey.version}</version>
998     </dependency>
999     <dependency>
1000       <groupId>com.sun.jersey</groupId>
1001       <artifactId>jersey-client</artifactId>
1002       <version>${jersey.version}</version>
1003     </dependency>
1004     <dependency>
1005       <groupId>com.sun.jersey</groupId>
1006       <artifactId>jersey-json</artifactId>
1007       <version>${jersey.version}</version>
1008     </dependency>
1009   </dependencies>
1010 </project>