source: raptor-web/trunk/pom.xml @ 971

Revision 971, 27.4 KB checked in by philsmart, 2 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3    <modelVersion>4.0.0</modelVersion>
4    <groupId>uk.ac.cardiff.raptor</groupId>
5    <artifactId>raptor-web</artifactId>
6    <name>RaptorWeb (Raptor Web Interface)</name>
7    <version>0.1.1-SNAPSHOT</version>
8    <packaging>war</packaging>
9    <url>http://iam.cf.ac.uk</url>
10
11    <licenses>
12        <license>
13            <name>Apache 2</name>
14            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
15            <distribution>repo</distribution>
16        </license>
17    </licenses>
18
19
20    <scm>
21        <developerConnection>scm:svn:http://iam.cf.ac.uk/repos/RAPTOR/raptor-web/trunk</developerConnection>
22        <url>http://iam.cf.ac.uk/repos/RAPTOR/raptor-web</url>
23    </scm>
24    <distributionManagement>
25        <repository>
26            <uniqueVersion>false</uniqueVersion>
27            <id>raptor-release</id>
28            <url>http://iam.cf.ac.uk/nexus-webapp-1.6.0/content/repositories/raptor-release</url>
29        </repository>
30        <snapshotRepository>
31            <uniqueVersion>false</uniqueVersion>
32            <id>raptor-snapshot</id>
33            <url>http://iam.cf.ac.uk/nexus-webapp-1.6.0/content/repositories/raptor-snapshot</url>
34        </snapshotRepository>
35    </distributionManagement>
36
37    <!-- Adding extra repositories for Richfaces and EL -->
38    <repositories>
39        <repository>
40            <releases>
41                <enabled>true</enabled>
42            </releases>
43            <snapshots>
44                <enabled>true</enabled>
45                <updatePolicy>always</updatePolicy>
46            </snapshots>
47            <id>snapshots.jboss.org</id>
48            <name>Snapshot Jboss Repository for Maven</name>
49            <url>http://snapshots.jboss.org/maven2/</url>
50            <layout>default</layout>
51        </repository>
52        <repository>
53            <releases>
54                <enabled>true</enabled>
55            </releases>
56            <snapshots>
57                <enabled>true</enabled>
58                <updatePolicy>always</updatePolicy>
59            </snapshots>
60            <id>repository.jboss.com</id>
61            <name>Jboss Repository for Maven</name>
62            <url>http://repository.jboss.com/maven2/</url>
63            <layout>default</layout>
64        </repository>
65
66        <repository>
67            <id>jboss-public-repository-group</id>
68            <name>JBoss Public Maven Repository Group</name>
69            <url>https://repository.jboss.org/nexus/content/groups/public-jboss/</url>
70            <layout>default</layout>
71            <releases>
72                <enabled>true</enabled>
73                <updatePolicy>never</updatePolicy>
74            </releases>
75            <snapshots>
76                <enabled>true</enabled>
77                <updatePolicy>never</updatePolicy>
78            </snapshots>
79        </repository>
80
81        <!-- Adding extra repositories for any other libs, which is hosted on Iam -->
82
83        <repository>
84            <releases>
85                <enabled>true</enabled>
86            </releases>
87            <snapshots>
88                <enabled>true</enabled>
89                <updatePolicy>always</updatePolicy>
90            </snapshots>
91            <id>raptor-extras-repo</id>
92            <name>Iam Local Maven Repo</name>
93            <url>http://iam.cf.ac.uk/nexus-webapp-1.6.0/content/repositories/raptor-extra</url>
94            <layout>default</layout>
95        </repository>
96        <repository>
97            <releases>
98                <enabled>true</enabled>
99            </releases>
100            <snapshots>
101                <enabled>true</enabled>
102                <updatePolicy>always</updatePolicy>
103            </snapshots>
104            <id>raptor-snapshot-repo</id>
105            <name>Iam Local Maven Repo Snapshots</name>
106            <url>http://iam.cf.ac.uk/nexus-webapp-1.6.0/content/repositories/raptor-snapshot</url>
107            <layout>default</layout>
108        </repository>
109        <repository>
110            <releases>
111                <enabled>true</enabled>
112            </releases>
113            <snapshots>
114                <enabled>true</enabled>
115                <updatePolicy>always</updatePolicy>
116            </snapshots>
117            <id>raptor-release-repo</id>
118            <name>Iam Local Maven Repo Releases</name>
119            <url>http://iam.cf.ac.uk/nexus-webapp-1.6.0/content/repositories/raptor-release</url>
120            <layout>default</layout>
121        </repository>
122    </repositories>
123    <!-- done -->
124
125
126    <build>
127        <pluginManagement>
128            <plugins>
129                <plugin>
130                    <groupId>org.apache.maven.plugins</groupId>
131                    <artifactId>maven-compiler-plugin</artifactId>
132                    <configuration>
133                        <source>1.6</source>
134                        <target>1.6</target>
135                    </configuration>
136                </plugin>
137            </plugins>
138        </pluginManagement>
139        <plugins>
140            <plugin>
141                <groupId>org.mortbay.jetty</groupId>
142                <artifactId>maven-jetty-plugin</artifactId>
143                <configuration>
144                    <connectors>
145                        <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
146                            <port>8082</port>
147                            <maxIdleTime>60000</maxIdleTime>
148                        </connector>
149                    </connectors>
150                </configuration>
151            </plugin>
152            <plugin>
153                <artifactId>maven-release-plugin</artifactId>
154                <version>2.0</version>
155                <configuration>
156                    <username>philsmart</username>
157                    <password>nv75hh</password>
158                    <tagBase>
159                        http://iam.cf.ac.uk/repos/RAPTOR/raptor-web/tags
160                    </tagBase>
161                    <providerImplementations>
162                        <svn>javasvn</svn>
163                    </providerImplementations>
164                </configuration>
165                <dependencies>
166                    <dependency>
167                        <groupId>com.google.code.maven-scm-provider-svnjava</groupId>
168                        <artifactId>maven-scm-provider-svnjava</artifactId>
169                        <version>1.10</version>
170                    </dependency>
171                </dependencies>
172            </plugin>
173            <plugin>
174                <groupId>com.google.code.maven-license-plugin</groupId>
175                <artifactId>maven-license-plugin</artifactId>
176                <version>1.4.0</version>
177                <configuration>
178                    <includes>
179                        <include>src/**</include>
180                        <include>**/test/**</include>
181                    </includes>
182                    <excludes>
183                        <exclude>target/**</exclude>
184                        <exclude>.clover/**</exclude>
185                    </excludes>
186                    <header>src/main/resources/license-apache</header>
187                    <properties>
188                        <year>2010</year>
189                        <email>smartp@cf.ac.uk</email>
190                        <name>Cardiff University, Wales</name>
191                    </properties>
192                </configuration>
193                <executions>
194                    <execution>
195                        <goals>
196                            <goal>check</goal>
197                        </goals>
198                    </execution>
199                </executions>
200            </plugin>
201        </plugins>
202    </build>
203    <dependencies>
204
205
206
207        <!-- RICHFACES -->
208        <dependency>
209            <groupId>org.richfaces.framework</groupId>
210            <artifactId>richfaces-impl</artifactId>
211            <version>3.3.3.Final</version>
212            <exclusions>
213                <exclusion>
214                    <artifactId>commons-logging</artifactId>
215                    <groupId>commons-logging</groupId>
216                </exclusion>
217            </exclusions>
218        </dependency>
219        <dependency>
220            <groupId>org.richfaces.ui</groupId>
221            <artifactId>richfaces-ui</artifactId>
222            <version>3.3.3.Final</version>
223            <exclusions>
224                <exclusion>
225                    <artifactId>commons-logging</artifactId>
226                    <groupId>commons-logging</groupId>
227                </exclusion>
228            </exclusions>
229        </dependency>
230
231        <!-- RICHFACES SKINS -->
232        <dependency>
233            <groupId>org.richfaces.samples</groupId>
234            <artifactId>laguna</artifactId>
235            <version>${richfaces.version}</version>
236            <exclusions>
237                <exclusion>
238                    <artifactId>jstl</artifactId>
239                    <groupId>javax.servlet</groupId>
240                </exclusion>
241            </exclusions>
242        </dependency>
243        <dependency>
244            <groupId>org.richfaces.samples</groupId>
245            <artifactId>glassX</artifactId>
246            <version>${richfaces.version}</version>
247            <exclusions>
248                <exclusion>
249                    <artifactId>jstl</artifactId>
250                    <groupId>javax.servlet</groupId>
251                </exclusion>
252            </exclusions>
253        </dependency>
254        <dependency>
255            <groupId>org.richfaces.samples</groupId>
256            <artifactId>darkX</artifactId>
257            <version>${richfaces.version}</version>
258            <exclusions>
259                <exclusion>
260                    <artifactId>jstl</artifactId>
261                    <groupId>javax.servlet</groupId>
262                </exclusion>
263            </exclusions>
264        </dependency>
265
266        <!-- Jstl -->
267        <dependency>
268            <groupId>jstl</groupId>
269            <artifactId>jstl</artifactId>
270            <version>1.2</version>
271            <scope>runtime</scope>
272        </dependency>
273        <dependency>
274            <groupId>javax.faces</groupId>
275            <artifactId>jsf-api</artifactId>
276            <version>1.2_02</version>
277        </dependency>
278        <dependency>
279            <groupId>javax.faces</groupId>
280            <artifactId>jsf-impl</artifactId>
281            <version>1.2-b19</version>
282        </dependency>
283
284
285        <!-- Facelets -->
286        <dependency>
287            <groupId>com.sun.facelets</groupId>
288            <artifactId>jsf-facelets</artifactId>
289            <version>1.1.14</version>
290        </dependency>
291        <!-- Expression Language -->
292        <dependency>
293            <groupId>commons-el</groupId>
294            <artifactId>commons-el</artifactId>
295            <version>1.0</version>
296            <scope>compile</scope>
297            <exclusions>
298                <exclusion>
299                    <artifactId>commons-logging</artifactId>
300                    <groupId>commons-logging</groupId>
301                </exclusion>
302            </exclusions>
303        </dependency>
304        <dependency>
305            <groupId>org.jboss.seam</groupId>
306            <artifactId>jboss-el</artifactId>
307            <version>2.0.0.GA</version>
308            <scope>compile</scope>
309            <exclusions>
310                <exclusion>
311                    <groupId>javax.el</groupId>
312                    <artifactId>el-api</artifactId>
313                </exclusion>
314            </exclusions>
315        </dependency>
316
317        <dependency>
318            <groupId>org.springframework</groupId>
319            <artifactId>spring-context-support</artifactId>
320            <version>${spring.version}</version>
321            <exclusions>
322                <exclusion>
323                    <artifactId>commons-logging</artifactId>
324                    <groupId>commons-logging</groupId>
325                </exclusion>
326            </exclusions>
327        </dependency>
328
329        <dependency>
330            <groupId>org.springframework</groupId>
331            <artifactId>spring-webmvc</artifactId>
332            <version>${spring.version}</version>
333            <exclusions>
334                <exclusion>
335                    <groupId>org.springframework</groupId>
336                    <artifactId>spring-context-support</artifactId>
337                </exclusion>
338                <exclusion>
339                    <groupId>org.springframework</groupId>
340                    <artifactId>spring-core</artifactId>
341                </exclusion>
342                <exclusion>
343                    <groupId>org.springframework</groupId>
344                    <artifactId>spring-aop</artifactId>
345                </exclusion>
346                <exclusion>
347                    <groupId>org.springframework</groupId>
348                    <artifactId>spring-dao</artifactId>
349                </exclusion>
350                <exclusion>
351                    <groupId>org.springframework</groupId>
352                    <artifactId>spring-jdbc</artifactId>
353                </exclusion>
354                <exclusion>
355                    <groupId>org.springframework</groupId>
356                    <artifactId>spring-web</artifactId>
357                </exclusion>
358                <exclusion>
359                    <groupId>org.springframework</groupId>
360                    <artifactId>spring-context</artifactId>
361                </exclusion>
362                <exclusion>
363                    <groupId>org.springframework</groupId>
364                    <artifactId>spring-support</artifactId>
365                </exclusion>
366                <exclusion>
367                    <groupId>org.springframework</groupId>
368                    <artifactId>spring-beans</artifactId>
369                </exclusion>
370            </exclusions>
371        </dependency>
372
373        <!-- spring webflow -->
374        <dependency>
375            <groupId>org.springframework.webflow</groupId>
376            <artifactId>org.springframework.binding</artifactId>
377            <version>${webflow.version}</version>
378            <exclusions>
379                <exclusion>
380                    <groupId>org.springframework</groupId>
381                    <artifactId>spring-core</artifactId>
382                </exclusion>
383                <exclusion>
384                    <groupId>org.springframework</groupId>
385                    <artifactId>spring-aop</artifactId>
386                </exclusion>
387                <exclusion>
388                    <groupId>org.springframework</groupId>
389                    <artifactId>spring-dao</artifactId>
390                </exclusion>
391                <exclusion>
392                    <groupId>org.springframework</groupId>
393                    <artifactId>spring-jdbc</artifactId>
394                </exclusion>
395                <exclusion>
396                    <groupId>org.springframework</groupId>
397                    <artifactId>spring-web</artifactId>
398                </exclusion>
399                <exclusion>
400                    <groupId>org.springframework</groupId>
401                    <artifactId>spring-context</artifactId>
402                </exclusion>
403                <exclusion>
404                    <groupId>org.springframework</groupId>
405                    <artifactId>spring-support</artifactId>
406                </exclusion>
407                <exclusion>
408                    <groupId>org.springframework</groupId>
409                    <artifactId>spring-beans</artifactId>
410                </exclusion>
411                <exclusion>
412                    <artifactId>commons-logging</artifactId>
413                    <groupId>commons-logging</groupId>
414                </exclusion>
415            </exclusions>
416        </dependency>
417        <dependency>
418            <groupId>org.springframework.webflow</groupId>
419            <artifactId>org.springframework.js</artifactId>
420            <version>${webflow.version}</version>
421            <exclusions>
422                <exclusion>
423                    <groupId>org.springframework</groupId>
424                    <artifactId>spring-core</artifactId>
425                </exclusion>
426                <exclusion>
427                    <groupId>org.springframework</groupId>
428                    <artifactId>spring-aop</artifactId>
429                </exclusion>
430                <exclusion>
431                    <groupId>org.springframework</groupId>
432                    <artifactId>spring-dao</artifactId>
433                </exclusion>
434                <exclusion>
435                    <groupId>org.springframework</groupId>
436                    <artifactId>spring-jdbc</artifactId>
437                </exclusion>
438                <exclusion>
439                    <groupId>org.springframework</groupId>
440                    <artifactId>spring-web</artifactId>
441                </exclusion>
442                <exclusion>
443                    <groupId>org.springframework</groupId>
444                    <artifactId>spring-context</artifactId>
445                </exclusion>
446                <exclusion>
447                    <groupId>org.springframework</groupId>
448                    <artifactId>spring-support</artifactId>
449                </exclusion>
450                <exclusion>
451                    <groupId>org.springframework</groupId>
452                    <artifactId>spring-beans</artifactId>
453                </exclusion>
454                <exclusion>
455                    <artifactId>commons-logging</artifactId>
456                    <groupId>commons-logging</groupId>
457                </exclusion>
458            </exclusions>
459        </dependency>
460        <dependency>
461            <groupId>org.springframework.webflow</groupId>
462            <artifactId>org.springframework.webflow</artifactId>
463            <version>${webflow.version}</version>
464            <exclusions>
465                <exclusion>
466                    <groupId>org.springframework</groupId>
467                    <artifactId>spring-core</artifactId>
468                </exclusion>
469                <exclusion>
470                    <groupId>org.springframework</groupId>
471                    <artifactId>spring-aop</artifactId>
472                </exclusion>
473                <exclusion>
474                    <groupId>org.springframework</groupId>
475                    <artifactId>spring-dao</artifactId>
476                </exclusion>
477                <exclusion>
478                    <groupId>org.springframework</groupId>
479                    <artifactId>spring-jdbc</artifactId>
480                </exclusion>
481                <exclusion>
482                    <groupId>org.springframework</groupId>
483                    <artifactId>spring-web</artifactId>
484                </exclusion>
485                <exclusion>
486                    <groupId>org.springframework</groupId>
487                    <artifactId>spring-context</artifactId>
488                </exclusion>
489                <exclusion>
490                    <groupId>org.springframework</groupId>
491                    <artifactId>spring-support</artifactId>
492                </exclusion>
493                <exclusion>
494                    <groupId>org.springframework</groupId>
495                    <artifactId>spring-beans</artifactId>
496                </exclusion>
497                <exclusion>
498                    <artifactId>commons-logging</artifactId>
499                    <groupId>commons-logging</groupId>
500                </exclusion>
501            </exclusions>
502        </dependency>
503        <dependency>
504            <groupId>org.springframework.webflow</groupId>
505            <artifactId>org.springframework.faces</artifactId>
506            <version>${webflow.version}</version>
507            <exclusions>
508                <exclusion>
509                    <groupId>org.springframework</groupId>
510                    <artifactId>spring-core</artifactId>
511                </exclusion>
512                <exclusion>
513                    <groupId>org.springframework</groupId>
514                    <artifactId>spring-aop</artifactId>
515                </exclusion>
516                <exclusion>
517                    <groupId>org.springframework</groupId>
518                    <artifactId>spring-dao</artifactId>
519                </exclusion>
520                <exclusion>
521                    <groupId>org.springframework</groupId>
522                    <artifactId>spring-jdbc</artifactId>
523                </exclusion>
524                <exclusion>
525                    <groupId>org.springframework</groupId>
526                    <artifactId>spring-web</artifactId>
527                </exclusion>
528                <exclusion>
529                    <groupId>org.springframework</groupId>
530                    <artifactId>spring-context</artifactId>
531                </exclusion>
532                <exclusion>
533                    <groupId>org.springframework</groupId>
534                    <artifactId>spring-support</artifactId>
535                </exclusion>
536                <exclusion>
537                    <groupId>org.springframework</groupId>
538                    <artifactId>spring-beans</artifactId>
539                </exclusion>
540                <exclusion>
541                    <artifactId>commons-logging</artifactId>
542                    <groupId>commons-logging</groupId>
543                </exclusion>
544            </exclusions>
545        </dependency>
546
547        <dependency>
548            <groupId>jexcelapi</groupId>
549            <artifactId>jxl</artifactId>
550            <version>2.6</version>
551        </dependency>
552
553        <dependency>
554            <groupId>uk.ac.cardiff.raptor</groupId>
555            <artifactId>raptor-client</artifactId>
556            <version>0.1.2</version>
557        </dependency>
558
559
560        <dependency>
561            <groupId>org.apache.cxf</groupId>
562            <artifactId>cxf-rt-transports-http</artifactId>
563            <version>${apache.cxf.version}</version>
564            <exclusions>
565                <exclusion>
566                    <artifactId>spring-web</artifactId>
567                    <groupId>org.springframework</groupId>
568                </exclusion>
569            </exclusions>
570        </dependency>
571
572        <dependency>
573            <groupId>org.apache.cxf</groupId>
574            <artifactId>cxf-rt-databinding-aegis</artifactId>
575            <version>${apache.cxf.version}</version>
576        </dependency>
577
578        <dependency>
579            <groupId>org.apache.cxf</groupId>
580            <artifactId>cxf-rt-frontend-jaxws</artifactId>
581            <version>${apache.cxf.version}</version>
582            <exclusions>
583                <exclusion>
584                    <groupId>asm</groupId>
585                    <artifactId>asm</artifactId>
586                </exclusion>
587            </exclusions>
588        </dependency>
589
590        <dependency>
591            <groupId>org.apache.cxf</groupId>
592            <artifactId>cxf-bundle-jaxrs</artifactId>
593            <version>${apache.cxf.version}</version>
594            <exclusions>
595                <exclusion>
596                    <artifactId>spring-beans</artifactId>
597                    <groupId>org.springframework</groupId>
598                </exclusion>
599                <exclusion>
600                    <artifactId>spring-core</artifactId>
601                    <groupId>org.springframework</groupId>
602                </exclusion>
603                <exclusion>
604                    <artifactId>spring-web</artifactId>
605                    <groupId>org.springframework</groupId>
606                </exclusion>
607                <exclusion>
608                    <artifactId>spring-context</artifactId>
609                    <groupId>org.springframework</groupId>
610                </exclusion>
611                <exclusion>
612                    <artifactId>xalan</artifactId>
613                    <groupId>xalan</groupId>
614                </exclusion>
615                <exclusion>
616                    <artifactId>xercesImpl</artifactId>
617                    <groupId>xerces</groupId>
618                </exclusion>
619                <exclusion>
620                    <groupId>org.slf4j</groupId>
621                    <artifactId>slf4j-api</artifactId>
622                </exclusion>
623                <exclusion>
624                    <artifactId>jetty</artifactId>
625                    <groupId>org.mortbay.jetty</groupId>
626                </exclusion>
627                <exclusion>
628                    <artifactId>jetty-util</artifactId>
629                    <groupId>org.mortbay.jetty</groupId>
630                </exclusion>
631                <exclusion>
632                    <artifactId>commons-logging</artifactId>
633                    <groupId>commons-logging</groupId>
634                </exclusion>
635            </exclusions>
636        </dependency>
637
638        <!-- Quartz -->
639
640        <dependency>
641            <groupId>org.quartz-scheduler</groupId>
642            <artifactId>quartz</artifactId>
643            <version>1.8.0</version>
644            <exclusions>
645                <exclusion>
646                    <artifactId>slf4j-api</artifactId>
647                    <groupId>org.slf4j</groupId>
648                </exclusion>
649                <exclusion>
650                    <artifactId>slf4j-log4j12</artifactId>
651                    <groupId>org.slf4j</groupId>
652                </exclusion>
653            </exclusions>
654        </dependency>
655
656        <!-- spring security -->
657        <dependency>
658            <groupId>org.springframework.security</groupId>
659            <artifactId>spring-security-core</artifactId>
660            <version>${spring.security.version}</version>
661        </dependency>
662        <dependency>
663            <groupId>org.springframework.security</groupId>
664            <artifactId>spring-security-config</artifactId>
665            <version>${spring.security.version}</version>
666        </dependency>
667
668        <dependency>
669            <groupId>org.springframework.security</groupId>
670            <artifactId>spring-security-web</artifactId>
671            <version>${spring.security.version}</version>
672        </dependency>
673        <dependency>
674            <groupId>org.mod4j.org.apache.commons</groupId>
675            <artifactId>lang</artifactId>
676            <version>2.1.0</version>
677        </dependency>
678
679        <!-- Graphical libraries -->
680        <dependency>
681            <groupId>jfree</groupId>
682            <artifactId>jfreechart</artifactId>
683            <version>1.0.13</version>
684        </dependency>
685        <dependency>
686            <groupId>batik</groupId>
687            <artifactId>batik</artifactId>
688            <version>1.5</version>
689        </dependency>
690        <dependency>
691            <groupId>batik</groupId>
692            <artifactId>batik-svggen</artifactId>
693            <version>1.6-1</version>
694        </dependency>
695
696        <dependency>
697            <groupId>jasperreports</groupId>
698            <artifactId>jasperreports</artifactId>
699            <version>3.5.3</version>
700            <exclusions>
701                <exclusion>
702                    <artifactId>commons-logging</artifactId>
703                    <groupId>commons-logging</groupId>
704                </exclusion>
705            </exclusions>
706        </dependency>
707        <dependency>
708            <groupId>ar.com.fdvs</groupId>
709            <artifactId>DynamicJasper</artifactId>
710            <version>3.0.13</version>
711        </dependency>
712
713        <!-- LOGGER DEPENDENCIES -->
714        <dependency>
715            <groupId>org.slf4j</groupId>
716            <artifactId>log4j-over-slf4j</artifactId>
717            <version>1.6.1</version>
718        </dependency>
719        <dependency>
720            <groupId>org.slf4j</groupId>
721            <artifactId>jcl-over-slf4j</artifactId>
722            <version>1.6.1</version>
723        </dependency>
724
725        <!-- END OF JETTY DEPENDENCIES -->
726
727
728        <dependency>
729            <groupId>ch.qos.logback</groupId>
730            <artifactId>logback-classic</artifactId>
731            <version>0.9.27</version>
732            <scope>compile</scope>
733        </dependency>
734    </dependencies>
735    <properties>
736        <myfaces.version>1.2.5</myfaces.version>
737        <spring.version>3.0.2.RELEASE</spring.version>
738        <apache.cxf.version>2.2.8</apache.cxf.version>
739        <webflow.version>2.0.5.RELEASE</webflow.version>
740        <spring.security.version>3.0.5.RELEASE</spring.security.version>
741        <richfaces.version>3.3.3.Final</richfaces.version>
742        <jetty.version>6.1.25</jetty.version>
743    </properties>
744</project>
Note: See TracBrowser for help on using the repository browser.