pom.xml 28 KB

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