pom.xml 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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>org.springframework.security</groupId>
  5. <artifactId>spring-security-parent</artifactId>
  6. <version>2.0-SNAPSHOT</version>
  7. <name>Spring Security</name>
  8. <packaging>pom</packaging>
  9. <modules>
  10. <module>core</module>
  11. <module>core-tiger</module>
  12. <module>adapters</module>
  13. <module>portlet</module>
  14. <module>ntlm</module>
  15. <module>openid</module>
  16. <module>samples</module>
  17. <module>cas</module>
  18. <module>captcha</module>
  19. <module>acl</module>
  20. <module>taglibs</module>
  21. </modules>
  22. <description>Spring Security</description>
  23. <organization>
  24. <name>SpringSource, Inc</name>
  25. <url>http://www.springsource.com/</url>
  26. </organization>
  27. <inceptionYear>2004</inceptionYear>
  28. <url>http://static.springframework.org/spring-security/site/index.html</url>
  29. <licenses>
  30. <license>
  31. <name>The Apache Software License, Version 2.0</name>
  32. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  33. <distribution>repo</distribution>
  34. </license>
  35. </licenses>
  36. <!-- Note when doing releases: tagBase is set in release plugin configuration below -->
  37. <scm>
  38. <connection>scm:svn:https://acegisecurity.svn.sourceforge.net/svnroot/acegisecurity/spring-security/trunk</connection>
  39. <developerConnection>scm:svn:https://acegisecurity.svn.sourceforge.net/svnroot/acegisecurity/spring-security/trunk</developerConnection>
  40. <url>http://acegisecurity.svn.sourceforge.net/viewcvs.cgi/acegisecurity/spring-security/trunk/</url>
  41. </scm>
  42. <issueManagement>
  43. <system>jira</system>
  44. <url>http://jira.springframework.org/browse/SEC</url>
  45. </issueManagement>
  46. <ciManagement>
  47. <system>bamboo</system>
  48. <url>https://build.springframework.org/browse/SEC</url>
  49. </ciManagement>
  50. <distributionManagement>
  51. <repository>
  52. <id>spring-milestone</id>
  53. <name>Spring Milestone Repository</name>
  54. <url>s3://maven.springframework.org/milestone</url>
  55. </repository>
  56. <snapshotRepository>
  57. <id>spring-snapshot</id>
  58. <name>Spring Snapshot Repository</name>
  59. <url>s3://maven.springframework.org/snapshot</url>
  60. </snapshotRepository>
  61. <site>
  62. <id>local</id>
  63. <name>Local Site Directory</name>
  64. <!--
  65. This variable is set by the build release script. You can also set it on the command line if
  66. you are running maven directly. e.g. mvn site -DsiteDirectory=file:///home/joe/mysite
  67. -->
  68. <url>${siteDirectory}</url>
  69. </site>
  70. </distributionManagement>
  71. <repositories>
  72. <repository>
  73. <id>spring-release</id>
  74. <name>Spring Portfolio Release Repository</name>
  75. <url>http://s3.amazonaws.com/maven.springframework.org/release</url>
  76. </repository>
  77. <repository>
  78. <id>spring-external</id>
  79. <name>Spring Portfolio Release Repository</name>
  80. <url>http://s3.amazonaws.com/maven.springframework.org/external</url>
  81. </repository>
  82. </repositories>
  83. <mailingLists>
  84. <mailingList>
  85. <name>Acegi Developer List</name>
  86. <subscribe>
  87. https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer
  88. </subscribe>
  89. <!--
  90. <unsubscribe>https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer</unsubscribe>
  91. <post>acegisecurity-developer@lists.sourceforge.net</post>
  92. -->
  93. <archive>
  94. http://sourceforge.net/mailarchive/forum.php?forum_id=40659
  95. </archive>
  96. <otherArchives>
  97. <otherArchive>
  98. http://news.gmane.org/gmane.comp.java.springframework.acegisecurity.devel/
  99. </otherArchive>
  100. <otherArchive>
  101. http://www.mail-archive.com/acegisecurity-developer@lists.sourceforge.net/
  102. </otherArchive>
  103. </otherArchives>
  104. </mailingList>
  105. </mailingLists>
  106. <developers>
  107. <developer>
  108. <name>Ben Alex</name>
  109. <id>benalex</id>
  110. <email>benalex at users.sourceforge.net</email>
  111. <organization>
  112. SpringSource
  113. </organization>
  114. <timezone>+10</timezone>
  115. </developer>
  116. <developer>
  117. <name>Colin Sampaleanu</name>
  118. <id>colins</id>
  119. <email>colinml1 at exis.com</email>
  120. </developer>
  121. <developer>
  122. <name>Carlos Sanchez</name>
  123. <id>carlossg</id>
  124. <email>carlossg at users.sourceforge.net</email>
  125. <timezone>+1</timezone>
  126. </developer>
  127. <developer>
  128. <name>Luke Taylor</name>
  129. <id>luke_t</id>
  130. <email>luke_t at users.sourceforge.net</email>
  131. <organization>
  132. SpringSource
  133. </organization>
  134. <timezone>0</timezone>
  135. </developer>
  136. <developer>
  137. <name>Ray Krueger</name>
  138. <id>raykrueger</id>
  139. <email>raykrueger at users.sourceforge.net</email>
  140. </developer>
  141. <developer>
  142. <name>Mark St.Godard</name>
  143. <id>markstg</id>
  144. <email>markstg at users.sourceforge.net</email>
  145. </developer>
  146. <developer>
  147. <name>John A. Lewis</name>
  148. <id>johnalewis</id>
  149. <email>johnalewis at users.sourceforge.net</email>
  150. </developer>
  151. </developers>
  152. <contributors>
  153. <contributor>
  154. <name>Alan Stewart</name>
  155. </contributor>
  156. <contributor>
  157. <name>Cameron Braid</name>
  158. </contributor>
  159. <contributor>
  160. <name>Patrick Burleson</name>
  161. </contributor>
  162. <contributor>
  163. <name>Francois Beausoleil</name>
  164. </contributor>
  165. <contributor>
  166. <name>Wesley Hall</name>
  167. </contributor>
  168. <contributor>
  169. <name>Scott Evans</name>
  170. </contributor>
  171. <contributor>
  172. <name>Travis Gregg</name>
  173. </contributor>
  174. <contributor>
  175. <name>Karel Miarka</name>
  176. </contributor>
  177. <contributor>
  178. <name>James Monaghan</name>
  179. </contributor>
  180. <contributor>
  181. <name>Andrew Petro</name>
  182. </contributor>
  183. <contributor>
  184. <name>Aaron Tang</name>
  185. </contributor>
  186. <contributor>
  187. <name>Orlando Garcia Carmona</name>
  188. </contributor>
  189. <contributor>
  190. <name>Joni Suominen</name>
  191. </contributor>
  192. <contributor>
  193. <name>Sergio Berna</name>
  194. </contributor>
  195. <contributor>
  196. <name>Paulo Neves</name>
  197. </contributor>
  198. <contributor>
  199. <name>Mike Perham</name>
  200. </contributor>
  201. <contributor>
  202. <name>Robin Bramley</name>
  203. </contributor>
  204. <contributor>
  205. <name>Robert Sanders</name>
  206. </contributor>
  207. <contributor>
  208. <name>Vishal Puri</name>
  209. </contributor>
  210. <contributor>
  211. <name>Martin Algesten</name>
  212. </contributor>
  213. </contributors>
  214. <dependencies>
  215. <dependency>
  216. <groupId>junit</groupId>
  217. <artifactId>junit</artifactId>
  218. <version>4.4</version>
  219. <scope>test</scope>
  220. </dependency>
  221. </dependencies>
  222. <build>
  223. <extensions>
  224. <extension>
  225. <groupId>org.springframework.aws</groupId>
  226. <artifactId>spring-aws-maven</artifactId>
  227. <version>1.2.2</version>
  228. </extension>
  229. </extensions>
  230. <plugins>
  231. <plugin>
  232. <groupId>org.apache.maven.plugins</groupId>
  233. <artifactId>maven-help-plugin</artifactId>
  234. <version>2.0.1</version>
  235. </plugin>
  236. <plugin>
  237. <groupId>org.apache.maven.plugins</groupId>
  238. <artifactId>maven-clean-plugin</artifactId>
  239. <version>2.1.1</version>
  240. </plugin>
  241. <plugin>
  242. <groupId>org.apache.maven.plugins</groupId>
  243. <artifactId>maven-resources-plugin</artifactId>
  244. <version>2.2</version>
  245. </plugin>
  246. <plugin>
  247. <groupId>org.apache.maven.plugins</groupId>
  248. <artifactId>maven-surefire-plugin</artifactId>
  249. <version>2.3.1</version>
  250. <configuration>
  251. <includes>
  252. <include>**/*Tests.class</include>
  253. </includes>
  254. <excludes>
  255. <exclude>**/Abstract*</exclude>
  256. </excludes>
  257. <forkMode>once</forkMode>
  258. <systemProperties>
  259. <!-- The working directory for the embedded apache Ldap test server -->
  260. <property>
  261. <name>apacheDSWorkDir</name>
  262. <value>
  263. ${basedir}/target/apacheds-work
  264. </value>
  265. </property>
  266. </systemProperties>
  267. </configuration>
  268. </plugin>
  269. <plugin>
  270. <groupId>org.apache.maven.plugins</groupId>
  271. <artifactId>maven-compiler-plugin</artifactId>
  272. <version>2.0.2</version>
  273. <executions>
  274. <execution>
  275. <id>java-1.4-compile</id>
  276. <phase>compile</phase>
  277. <goals>
  278. <goal>compile</goal>
  279. </goals>
  280. <configuration>
  281. <source>1.4</source>
  282. <target>1.4</target>
  283. </configuration>
  284. </execution>
  285. <execution>
  286. <id>java-1.5-compile</id>
  287. <phase>process-test-sources</phase>
  288. <goals>
  289. <goal>testCompile</goal>
  290. </goals>
  291. <configuration>
  292. <source>1.5</source>
  293. <target>1.5</target>
  294. </configuration>
  295. </execution>
  296. </executions>
  297. </plugin>
  298. <plugin>
  299. <groupId>org.apache.maven.plugins</groupId>
  300. <artifactId>maven-jar-plugin</artifactId>
  301. <version>2.1</version>
  302. <executions>
  303. <execution>
  304. <goals>
  305. <goal>test-jar</goal>
  306. </goals>
  307. <phase>package</phase>
  308. </execution>
  309. </executions>
  310. </plugin>
  311. <plugin>
  312. <groupId>org.apache.maven.plugins</groupId>
  313. <artifactId>maven-source-plugin</artifactId>
  314. <version>2.0.3</version>
  315. <configuration>
  316. <attach>true</attach>
  317. </configuration>
  318. <executions>
  319. <execution>
  320. <goals>
  321. <goal>jar</goal>
  322. </goals>
  323. </execution>
  324. </executions>
  325. </plugin>
  326. <!-- Other -->
  327. <plugin>
  328. <groupId>org.apache.maven.plugins</groupId>
  329. <artifactId>maven-war-plugin</artifactId>
  330. <version>2.0.2</version>
  331. </plugin>
  332. <plugin>
  333. <groupId>org.apache.maven.plugins</groupId>
  334. <artifactId>maven-assembly-plugin</artifactId>
  335. <version>2.1</version>
  336. </plugin>
  337. <plugin>
  338. <groupId>org.apache.maven.plugins</groupId>
  339. <artifactId>maven-install-plugin</artifactId>
  340. <version>2.2</version>
  341. </plugin>
  342. <plugin>
  343. <groupId>org.apache.maven.plugins</groupId>
  344. <artifactId>maven-deploy-plugin</artifactId>
  345. <version>2.3</version>
  346. </plugin>
  347. <plugin>
  348. <groupId>org.apache.maven.plugins</groupId>
  349. <artifactId>maven-release-plugin</artifactId>
  350. <version>2.0-beta-7</version>
  351. <configuration>
  352. <tagBase>
  353. https://acegisecurity.svn.sourceforge.net/svnroot/acegisecurity/spring-security/tags
  354. </tagBase>
  355. </configuration>
  356. </plugin>
  357. <!-- IDE -->
  358. <plugin>
  359. <groupId>org.apache.maven.plugins</groupId>
  360. <artifactId>maven-eclipse-plugin</artifactId>
  361. <version>2.5</version>
  362. <configuration>
  363. <downloadSources>true</downloadSources>
  364. <wtpversion>1.5</wtpversion>
  365. </configuration>
  366. </plugin>
  367. <plugin>
  368. <groupId>org.apache.maven.plugins</groupId>
  369. <artifactId>maven-idea-plugin</artifactId>
  370. <version>2.0</version>
  371. <configuration>
  372. <downloadSources>true</downloadSources>
  373. <!--<downloadJavadocs>true</downloadJavadocs>-->
  374. <dependenciesAsLibraries>
  375. true
  376. </dependenciesAsLibraries>
  377. </configuration>
  378. </plugin>
  379. <!-- Site -->
  380. <plugin>
  381. <groupId>org.apache.maven.plugins</groupId>
  382. <artifactId>maven-site-plugin</artifactId>
  383. <version>2.0-beta-6</version>
  384. </plugin>
  385. <plugin>
  386. <groupId>com.agilejava.docbkx</groupId>
  387. <artifactId>docbkx-maven-plugin</artifactId>
  388. <version>2.0.6</version>
  389. <executions>
  390. <execution>
  391. <goals>
  392. <goal>generate-html</goal>
  393. <goal>generate-pdf</goal>
  394. </goals>
  395. <phase>pre-site</phase>
  396. </execution>
  397. </executions>
  398. <dependencies>
  399. <dependency>
  400. <groupId>org.docbook</groupId>
  401. <artifactId>docbook-xml</artifactId>
  402. <version>4.4</version>
  403. <scope>runtime</scope>
  404. </dependency>
  405. </dependencies>
  406. <configuration>
  407. <includes>springsecurity.xml</includes>
  408. <chunkedOutput>true</chunkedOutput>
  409. <htmlStylesheet>css/html.css</htmlStylesheet>
  410. <xincludeSupported>true</xincludeSupported>
  411. <htmlCustomization>src/docbkx/resources/xsl/html_chunk.xsl</htmlCustomization>
  412. <foCustomization>src/docbkx/resources/xsl/fopdf.xsl</foCustomization>
  413. <entities>
  414. <entity>
  415. <name>version</name>
  416. <value>${pom.version}</value>
  417. </entity>
  418. </entities>
  419. <postProcess>
  420. <copy todir="target/site/reference">
  421. <fileset dir="target/docbkx">
  422. <include name="**/*.html"/>
  423. <include name="**/*.pdf"/>
  424. </fileset>
  425. </copy>
  426. <copy todir="target/site/reference/html">
  427. <fileset dir="src/docbkx/resources">
  428. <include name="**/*.css"/>
  429. <include name="**/*.png"/>
  430. <include name="**/*.gif"/>
  431. <include name="**/*.jpg"/>
  432. </fileset>
  433. </copy>
  434. <move file="target/site/reference/pdf/index.pdf"
  435. tofile="target/site/reference/pdf/spring-ws-reference.pdf" failonerror="false"/>
  436. </postProcess>
  437. </configuration>
  438. <!--
  439. <configuration>
  440. <sourceDirectory>${docbook.source}</sourceDirectory>
  441. <targetDirectory>${docbook.target}</targetDirectory>
  442. <inputs>springsecurity.xml</inputs>
  443. <chunkedOutput>false</chunkedOutput>
  444. <postProcess>
  445. <copy todir="${docbook.target}/images">
  446. <fileset dir="${docbook.source}/images">
  447. <include name="*.png" />
  448. <include name="*.gif" />
  449. <include name="*.jpg" />
  450. </fileset>
  451. </copy>
  452. </postProcess>
  453. </configuration>
  454. </execution>
  455. <execution>
  456. <id>build-pdf-doc</id>
  457. <phase>pre-site</phase>
  458. <goals>
  459. <goal>generate-pdf</goal>
  460. </goals>
  461. <configuration>
  462. <sourceDirectory>${docbook.source}</sourceDirectory>
  463. <targetDirectory>${docbook.target}</targetDirectory>
  464. <inputs>springsecurity.xml</inputs>
  465. <imgSrcPath>${docbook.source}/</imgSrcPath>
  466. <admonGraphicsPath>${docbook.source}/resources/images/admons/</admonGraphicsPath>
  467. <foCustomization>${docbook.source}/resources/xsl/spring-security-docbook-fopdf.xsl
  468. </foCustomization>
  469. </configuration>
  470. </execution>
  471. </executions>
  472. -->
  473. </plugin>
  474. </plugins>
  475. </build>
  476. <reporting>
  477. <plugins>
  478. <plugin>
  479. <groupId>org.apache.maven.plugins</groupId>
  480. <artifactId>maven-surefire-report-plugin</artifactId>
  481. <version>2.3.1</version>
  482. <configuration>
  483. <aggregate>true</aggregate>
  484. </configuration>
  485. </plugin>
  486. <plugin>
  487. <groupId>org.apache.maven.plugins</groupId>
  488. <artifactId>maven-jxr-plugin</artifactId>
  489. <configuration>
  490. <aggregate>true</aggregate>
  491. <excludes>
  492. <exclude>bigbank/**</exclude>
  493. </excludes>
  494. </configuration>
  495. </plugin>
  496. <!--
  497. <plugin>
  498. <groupId>org.apache.maven.plugins</groupId>
  499. <artifactId>maven-checkstyle-plugin</artifactId>
  500. <configuration>
  501. <configLocation>
  502. acegi_checkstyle.xml
  503. </configLocation>
  504. </configuration>
  505. </plugin>
  506. -->
  507. <plugin>
  508. <groupId>org.codehaus.mojo</groupId>
  509. <artifactId>cobertura-maven-plugin</artifactId>
  510. <version>2.2</version>
  511. </plugin>
  512. <plugin>
  513. <groupId>org.apache.maven.plugins</groupId>
  514. <artifactId>maven-javadoc-plugin</artifactId>
  515. <version>2.3</version>
  516. <configuration>
  517. <aggregate>true</aggregate>
  518. <header>Spring Security Framework</header>
  519. <quiet>true</quiet>
  520. <excludePackageNames>sample,bigbank</excludePackageNames>
  521. <links>
  522. <link>
  523. http://java.sun.com/j2se/1.5.0/docs/api
  524. </link>
  525. <link>
  526. http://www.springframework.org/docs/api/
  527. </link>
  528. <link>
  529. http://commons.apache.org/dbcp/apidocs/
  530. </link>
  531. <link>
  532. http://commons.apache.org/httpclient/apidocs/
  533. </link>
  534. <link>
  535. http://commons.apache.org/pool/apidocs/
  536. </link>
  537. <link>
  538. http://commons.apache.org/lang/api/
  539. </link>
  540. <link>
  541. http://commons.apache.org/codec/apidocs/
  542. </link>
  543. <link>
  544. http://commons.apache.org/collections/apidocs/
  545. </link>
  546. <link>
  547. http://velocity.apache.org/engine/releases/velocity-1.5/apidocs/
  548. </link>
  549. <link>
  550. http://developer.ja-sig.org/projects/cas/cas-server-core/cas-server/cas-server-core/apidocs/
  551. </link>
  552. <link>
  553. http://tomcat.apache.org/tomcat-5.0-doc/servletapi/
  554. </link>
  555. </links>
  556. </configuration>
  557. <reportSets>
  558. <reportSet>
  559. <reports>
  560. <report>javadoc</report>
  561. <!-- <report>test-javadoc</report> -->
  562. </reports>
  563. </reportSet>
  564. </reportSets>
  565. </plugin>
  566. <plugin>
  567. <groupId>org.codehaus.mojo</groupId>
  568. <artifactId>taglist-maven-plugin</artifactId>
  569. </plugin>
  570. <plugin>
  571. <groupId>org.apache.maven.plugins</groupId>
  572. <artifactId>maven-project-info-reports-plugin</artifactId>
  573. <version>2.0.1</version>
  574. <!--
  575. <reportSets>
  576. <reportSet>
  577. <reports>
  578. <report>dependencies</report>
  579. <report>project-team</report>
  580. <report>mailing-list</report>
  581. <report>issue-tracking</report>
  582. <report>license</report>
  583. </reports>
  584. </reportSet>
  585. </reportSets>
  586. -->
  587. </plugin>
  588. </plugins>
  589. </reporting>
  590. <dependencyManagement>
  591. <dependencies>
  592. <dependency>
  593. <groupId>org.springframework</groupId>
  594. <artifactId>spring-core</artifactId>
  595. <version>${spring.version}</version>
  596. </dependency>
  597. <dependency>
  598. <groupId>org.springframework</groupId>
  599. <artifactId>spring-mock</artifactId>
  600. <version>${spring.version}</version>
  601. </dependency>
  602. <dependency>
  603. <groupId>org.springframework</groupId>
  604. <artifactId>spring-remoting</artifactId>
  605. <version>${spring.version}</version>
  606. </dependency>
  607. <dependency>
  608. <groupId>org.springframework</groupId>
  609. <artifactId>spring-web</artifactId>
  610. <version>${spring.version}</version>
  611. </dependency>
  612. <dependency>
  613. <groupId>org.springframework</groupId>
  614. <artifactId>spring-jdbc</artifactId>
  615. <version>${spring.version}</version>
  616. </dependency>
  617. <dependency>
  618. <groupId>org.springframework</groupId>
  619. <artifactId>spring-dao</artifactId>
  620. <version>${spring.version}</version>
  621. </dependency>
  622. <dependency>
  623. <groupId>org.springframework</groupId>
  624. <artifactId>spring-support</artifactId>
  625. <version>${spring.version}</version>
  626. </dependency>
  627. <dependency>
  628. <groupId>org.springframework</groupId>
  629. <artifactId>spring-aop</artifactId>
  630. <version>${spring.version}</version>
  631. </dependency>
  632. <dependency>
  633. <groupId>org.springframework</groupId>
  634. <artifactId>spring-context</artifactId>
  635. <version>${spring.version}</version>
  636. </dependency>
  637. <dependency>
  638. <groupId>org.springframework.ldap</groupId>
  639. <artifactId>spring-ldap</artifactId>
  640. <version>1.2.1</version>
  641. </dependency>
  642. <dependency>
  643. <groupId>org.aspectj</groupId>
  644. <artifactId>aspectjweaver</artifactId>
  645. <optional>true</optional>
  646. <version>1.5.4</version>
  647. </dependency>
  648. <dependency>
  649. <groupId>aspectj</groupId>
  650. <artifactId>aspectjrt</artifactId>
  651. <version>1.5.4</version>
  652. </dependency>
  653. <dependency>
  654. <groupId>org.springframework</groupId>
  655. <artifactId>spring-webmvc</artifactId>
  656. <version>${spring.version}</version>
  657. </dependency>
  658. <dependency>
  659. <groupId>cglib</groupId>
  660. <artifactId>cglib-nodep</artifactId>
  661. <scope>test</scope>
  662. <optional>true</optional>
  663. <version>2.1_3</version>
  664. </dependency>
  665. <dependency>
  666. <groupId>log4j</groupId>
  667. <artifactId>log4j</artifactId>
  668. <version>1.2.14</version> <!-- 1.2.15 has some JMX dependencies we don't want in its POM -->
  669. <optional>true</optional>
  670. <scope>runtime</scope>
  671. </dependency>
  672. <dependency>
  673. <groupId>net.sf.ehcache</groupId>
  674. <artifactId>ehcache</artifactId>
  675. <version>1.4.1</version>
  676. </dependency>
  677. <dependency>
  678. <groupId>commons-collections</groupId>
  679. <artifactId>commons-collections</artifactId>
  680. <version>3.2</version>
  681. </dependency>
  682. <dependency>
  683. <groupId>hsqldb</groupId>
  684. <artifactId>hsqldb</artifactId>
  685. <version>1.8.0.7</version>
  686. </dependency>
  687. <dependency>
  688. <groupId>commons-logging</groupId>
  689. <artifactId>commons-logging</artifactId>
  690. <version>1.1.1</version>
  691. </dependency>
  692. <dependency>
  693. <groupId>commons-codec</groupId>
  694. <artifactId>commons-codec</artifactId>
  695. <version>1.3</version>
  696. </dependency>
  697. <dependency>
  698. <groupId>javax.servlet</groupId>
  699. <artifactId>servlet-api</artifactId>
  700. <version>2.4</version>
  701. <scope>provided</scope>
  702. </dependency>
  703. <dependency>
  704. <groupId>javax.servlet</groupId>
  705. <artifactId>jstl</artifactId>
  706. <version>${jstl.version}</version>
  707. <scope>runtime</scope>
  708. </dependency>
  709. <dependency>
  710. <groupId>taglibs</groupId>
  711. <artifactId>standard</artifactId>
  712. <version>${jstl.version}</version>
  713. <scope>runtime</scope>
  714. </dependency>
  715. </dependencies>
  716. </dependencyManagement>
  717. <properties>
  718. <spring.version>2.0.8</spring.version>
  719. <felix.version>1.4.0</felix.version>
  720. <jstl.version>1.1.2</jstl.version>
  721. <docbook.source>${basedir}/src/docbkx</docbook.source>
  722. <docbook.target>${basedir}/target/site/guide</docbook.target>
  723. </properties>
  724. </project>