pom.xml 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717
  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.5.0-SNAPSHOT</version>
  7. <name>Spring Security</name>
  8. <packaging>pom</packaging>
  9. <modules>
  10. <module>core</module>
  11. <module>portlet</module>
  12. <module>ntlm</module>
  13. <module>openid</module>
  14. <module>samples</module>
  15. <module>cas</module>
  16. <module>acl</module>
  17. <module>taglibs</module>
  18. <module>itest</module>
  19. </modules>
  20. <description>Spring Security</description>
  21. <organization>
  22. <name>SpringSource, Inc</name>
  23. <url>http://www.springsource.com/</url>
  24. </organization>
  25. <inceptionYear>2004</inceptionYear>
  26. <url>http://static.springframework.org/spring-security/site/index.html</url>
  27. <licenses>
  28. <license>
  29. <name>The Apache Software License, Version 2.0</name>
  30. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  31. <distribution>repo</distribution>
  32. </license>
  33. </licenses>
  34. <!-- Note when doing releases: tagBase is set in release plugin configuration below -->
  35. <scm>
  36. <connection>scm:svn:https://acegisecurity.svn.sourceforge.net/svnroot/acegisecurity/spring-security/trunk</connection>
  37. <developerConnection>scm:svn:https://acegisecurity.svn.sourceforge.net/svnroot/acegisecurity/spring-security/trunk</developerConnection>
  38. <url>http://acegisecurity.svn.sourceforge.net/viewcvs.cgi/acegisecurity/spring-security/trunk/</url>
  39. </scm>
  40. <issueManagement>
  41. <system>jira</system>
  42. <url>http://jira.springframework.org/browse/SEC</url>
  43. </issueManagement>
  44. <ciManagement>
  45. <system>bamboo</system>
  46. <url>https://build.springframework.org/browse/SEC</url>
  47. </ciManagement>
  48. <distributionManagement>
  49. <repository>
  50. <id>spring-milestone</id>
  51. <name>Spring Milestone Repository</name>
  52. <url>s3://maven.springframework.org/milestone</url>
  53. </repository>
  54. <snapshotRepository>
  55. <id>spring-snapshot</id>
  56. <name>Spring Snapshot Repository</name>
  57. <url>s3://maven.springframework.org/snapshot</url>
  58. </snapshotRepository>
  59. <site>
  60. <id>local</id>
  61. <name>Local Site Directory</name>
  62. <!--
  63. This variable is set by the build release script. You can also set it on the command line if
  64. you are running maven directly. e.g. mvn site -DsiteDirectory=file:///home/joe/mysite
  65. -->
  66. <url>${siteDirectory}</url>
  67. </site>
  68. </distributionManagement>
  69. <repositories>
  70. <repository>
  71. <id>com.springsource.repository.bundles.release</id>
  72. <name>SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases</name>
  73. <url>http://repository.springsource.com/maven/bundles/release</url>
  74. </repository>
  75. <repository>
  76. <id>com.springsource.repository.bundles.external</id>
  77. <name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name>
  78. <url>http://repository.springsource.com/maven/bundles/external</url>
  79. </repository>
  80. <repository>
  81. <id>com.springsource.repository.bundles.snapshot</id>
  82. <name>SpringSource Enterprise Bundle Repository - SpringSource Snapshot Releases</name>
  83. <url>http://repository.springsource.com/maven/bundles/snapshot</url>
  84. </repository>
  85. <repository>
  86. <id>spring-milestone</id>
  87. <name>Spring Portfolio Milestone Repository</name>
  88. <url>http://s3.amazonaws.com/maven.springframework.org/milestone</url>
  89. </repository>
  90. <repository>
  91. <!-- needed for jets3t-0.5.1-20080115 -->
  92. <id>springExternal</id>
  93. <name>Spring external dependencies</name>
  94. <url>http://maven.springframework.org/external/</url>
  95. </repository>
  96. </repositories>
  97. <mailingLists>
  98. <mailingList>
  99. <name>Acegi Developer List</name>
  100. <subscribe>
  101. https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer
  102. </subscribe>
  103. <!--
  104. <unsubscribe>https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer</unsubscribe>
  105. <post>acegisecurity-developer@lists.sourceforge.net</post>
  106. -->
  107. <archive>
  108. http://sourceforge.net/mailarchive/forum.php?forum_id=40659
  109. </archive>
  110. <otherArchives>
  111. <otherArchive>
  112. http://news.gmane.org/gmane.comp.java.springframework.acegisecurity.devel/
  113. </otherArchive>
  114. <otherArchive>
  115. http://www.mail-archive.com/acegisecurity-developer@lists.sourceforge.net/
  116. </otherArchive>
  117. </otherArchives>
  118. </mailingList>
  119. </mailingLists>
  120. <developers>
  121. <developer>
  122. <name>Ben Alex</name>
  123. <id>benalex</id>
  124. <email>benalex at users.sourceforge.net</email>
  125. <organization>
  126. SpringSource
  127. </organization>
  128. <timezone>+10</timezone>
  129. </developer>
  130. <developer>
  131. <name>Colin Sampaleanu</name>
  132. <id>colins</id>
  133. <email>colinml1 at exis.com</email>
  134. </developer>
  135. <developer>
  136. <name>Carlos Sanchez</name>
  137. <id>carlossg</id>
  138. <email>carlossg at users.sourceforge.net</email>
  139. <timezone>+1</timezone>
  140. </developer>
  141. <developer>
  142. <name>Luke Taylor</name>
  143. <id>luke_t</id>
  144. <email>luke_t at users.sourceforge.net</email>
  145. <organization>
  146. SpringSource
  147. </organization>
  148. <timezone>0</timezone>
  149. </developer>
  150. <developer>
  151. <name>Ray Krueger</name>
  152. <id>raykrueger</id>
  153. <email>raykrueger at users.sourceforge.net</email>
  154. </developer>
  155. <developer>
  156. <name>Mark St.Godard</name>
  157. <id>markstg</id>
  158. <email>markstg at users.sourceforge.net</email>
  159. </developer>
  160. <developer>
  161. <name>John A. Lewis</name>
  162. <id>johnalewis</id>
  163. <email>johnalewis at users.sourceforge.net</email>
  164. </developer>
  165. </developers>
  166. <contributors>
  167. <contributor>
  168. <name>Alan Stewart</name>
  169. </contributor>
  170. <contributor>
  171. <name>Cameron Braid</name>
  172. </contributor>
  173. <contributor>
  174. <name>Patrick Burleson</name>
  175. </contributor>
  176. <contributor>
  177. <name>Francois Beausoleil</name>
  178. </contributor>
  179. <contributor>
  180. <name>Wesley Hall</name>
  181. </contributor>
  182. <contributor>
  183. <name>Scott Evans</name>
  184. </contributor>
  185. <contributor>
  186. <name>Travis Gregg</name>
  187. </contributor>
  188. <contributor>
  189. <name>Karel Miarka</name>
  190. </contributor>
  191. <contributor>
  192. <name>James Monaghan</name>
  193. </contributor>
  194. <contributor>
  195. <name>Andrew Petro</name>
  196. </contributor>
  197. <contributor>
  198. <name>Aaron Tang</name>
  199. </contributor>
  200. <contributor>
  201. <name>Orlando Garcia Carmona</name>
  202. </contributor>
  203. <contributor>
  204. <name>Joni Suominen</name>
  205. </contributor>
  206. <contributor>
  207. <name>Sergio Berna</name>
  208. </contributor>
  209. <contributor>
  210. <name>Paulo Neves</name>
  211. </contributor>
  212. <contributor>
  213. <name>Mike Perham</name>
  214. </contributor>
  215. <contributor>
  216. <name>Robin Bramley</name>
  217. </contributor>
  218. <contributor>
  219. <name>Robert Sanders</name>
  220. </contributor>
  221. <contributor>
  222. <name>Vishal Puri</name>
  223. </contributor>
  224. <contributor>
  225. <name>Martin Algesten</name>
  226. </contributor>
  227. <contributor>
  228. <name>Ruud Senden</name>
  229. </contributor>
  230. <contributor>
  231. <name>Michael Mayr</name>
  232. </contributor>
  233. </contributors>
  234. <dependencies>
  235. <dependency>
  236. <groupId>junit</groupId>
  237. <artifactId>junit</artifactId>
  238. <version>4.5</version>
  239. <scope>test</scope>
  240. </dependency>
  241. </dependencies>
  242. <build>
  243. <extensions>
  244. <extension>
  245. <groupId>org.springframework.aws</groupId>
  246. <artifactId>spring-aws-maven</artifactId>
  247. <version>1.2.2</version>
  248. </extension>
  249. </extensions>
  250. <plugins>
  251. <plugin>
  252. <groupId>org.apache.maven.plugins</groupId>
  253. <artifactId>maven-help-plugin</artifactId>
  254. <version>2.0.1</version>
  255. </plugin>
  256. <plugin>
  257. <groupId>org.apache.maven.plugins</groupId>
  258. <artifactId>maven-clean-plugin</artifactId>
  259. <version>2.2</version>
  260. </plugin>
  261. <plugin>
  262. <groupId>org.apache.maven.plugins</groupId>
  263. <artifactId>maven-resources-plugin</artifactId>
  264. <version>2.2</version>
  265. </plugin>
  266. <plugin>
  267. <groupId>org.apache.maven.plugins</groupId>
  268. <artifactId>maven-surefire-plugin</artifactId>
  269. <version>2.4.2</version>
  270. <configuration>
  271. <includes>
  272. <include>**/*Tests.class</include>
  273. </includes>
  274. <excludes>
  275. <exclude>**/Abstract*</exclude>
  276. </excludes>
  277. <forkMode>once</forkMode>
  278. <systemProperties>
  279. <!-- The working directory for the embedded apache Ldap test server -->
  280. <property>
  281. <name>apacheDSWorkDir</name>
  282. <value>
  283. ${basedir}/target/apacheds-work
  284. </value>
  285. </property>
  286. </systemProperties>
  287. </configuration>
  288. </plugin>
  289. <plugin>
  290. <groupId>org.apache.maven.plugins</groupId>
  291. <artifactId>maven-compiler-plugin</artifactId>
  292. <version>2.0.2</version>
  293. <configuration>
  294. <source>1.5</source>
  295. <target>1.5</target>
  296. </configuration>
  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.1</version>
  362. <configuration>
  363. <downloadSources>true</downloadSources>
  364. <wtpversion>2.0</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.7</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. </postProcess>
  435. </configuration>
  436. </plugin>
  437. </plugins>
  438. </build>
  439. <reporting>
  440. <plugins>
  441. <plugin>
  442. <groupId>org.apache.maven.plugins</groupId>
  443. <artifactId>maven-surefire-report-plugin</artifactId>
  444. <version>2.4.2</version>
  445. <!--
  446. <configuration>
  447. <aggregate>true</aggregate>
  448. </configuration>
  449. -->
  450. </plugin>
  451. <plugin>
  452. <groupId>org.apache.maven.plugins</groupId>
  453. <artifactId>maven-jxr-plugin</artifactId>
  454. <configuration>
  455. <aggregate>true</aggregate>
  456. <excludes>
  457. <exclude>bigbank/**</exclude>
  458. </excludes>
  459. </configuration>
  460. </plugin>
  461. <!--
  462. <plugin>
  463. <groupId>org.apache.maven.plugins</groupId>
  464. <artifactId>maven-checkstyle-plugin</artifactId>
  465. <configuration>
  466. <configLocation>
  467. acegi_checkstyle.xml
  468. </configLocation>
  469. </configuration>
  470. </plugin>
  471. -->
  472. <plugin>
  473. <groupId>org.codehaus.mojo</groupId>
  474. <artifactId>cobertura-maven-plugin</artifactId>
  475. <version>2.2</version>
  476. </plugin>
  477. <plugin>
  478. <groupId>org.apache.maven.plugins</groupId>
  479. <artifactId>maven-javadoc-plugin</artifactId>
  480. <version>2.4</version>
  481. <configuration>
  482. <aggregate>true</aggregate>
  483. <header>Spring Security Framework</header>
  484. <quiet>true</quiet>
  485. <excludePackageNames>sample,bigbank,zzz</excludePackageNames>
  486. <links>
  487. <link>
  488. http://java.sun.com/j2se/1.5.0/docs/api
  489. </link>
  490. <link>
  491. http://static.springframework.org/spring/docs/2.5.x/api/
  492. </link>
  493. <link>
  494. http://commons.apache.org/dbcp/apidocs/
  495. </link>
  496. <link>
  497. http://commons.apache.org/httpclient/apidocs/
  498. </link>
  499. <link>
  500. http://commons.apache.org/pool/apidocs/
  501. </link>
  502. <link>
  503. http://commons.apache.org/lang/api/
  504. </link>
  505. <link>
  506. http://commons.apache.org/codec/apidocs/
  507. </link>
  508. <link>
  509. http://commons.apache.org/collections/apidocs/
  510. </link>
  511. <link>
  512. http://velocity.apache.org/engine/releases/velocity-1.5/apidocs/
  513. </link>
  514. <link>
  515. http://developer.ja-sig.org/projects/cas/cas-server-core/cas-server/cas-server-core/apidocs/
  516. </link>
  517. <link>
  518. http://tomcat.apache.org/tomcat-5.5-doc/servletapi/
  519. </link>
  520. </links>
  521. </configuration>
  522. <reportSets>
  523. <reportSet>
  524. <reports>
  525. <report>javadoc</report>
  526. <!--<report>test-javadoc</report> -->
  527. </reports>
  528. </reportSet>
  529. </reportSets>
  530. </plugin>
  531. <plugin>
  532. <groupId>org.codehaus.mojo</groupId>
  533. <artifactId>taglist-maven-plugin</artifactId>
  534. </plugin>
  535. <plugin>
  536. <groupId>org.apache.maven.plugins</groupId>
  537. <artifactId>maven-project-info-reports-plugin</artifactId>
  538. <version>2.0.1</version>
  539. <!--
  540. <reportSets>
  541. <reportSet>
  542. <reports>
  543. <report>dependencies</report>
  544. <report>project-team</report>
  545. <report>mailing-list</report>
  546. <report>issue-tracking</report>
  547. <report>license</report>
  548. </reports>
  549. </reportSet>
  550. </reportSets>
  551. -->
  552. </plugin>
  553. </plugins>
  554. </reporting>
  555. <dependencyManagement>
  556. <dependencies>
  557. <dependency>
  558. <groupId>org.springframework</groupId>
  559. <artifactId>spring-core</artifactId>
  560. <version>${spring.version}</version>
  561. </dependency>
  562. <dependency>
  563. <groupId>org.springframework</groupId>
  564. <artifactId>spring-test</artifactId>
  565. <version>${spring.version}</version>
  566. </dependency>
  567. <!--
  568. <dependency>
  569. <groupId>org.springframework</groupId>
  570. <artifactId>spring-remoting</artifactId>
  571. <version>${spring.version}</version>
  572. </dependency>
  573. -->
  574. <dependency>
  575. <groupId>org.springframework</groupId>
  576. <artifactId>spring-web</artifactId>
  577. <version>${spring.version}</version>
  578. </dependency>
  579. <dependency>
  580. <groupId>org.springframework</groupId>
  581. <artifactId>spring-jdbc</artifactId>
  582. <version>${spring.version}</version>
  583. </dependency>
  584. <dependency>
  585. <groupId>org.springframework</groupId>
  586. <artifactId>spring-tx</artifactId>
  587. <version>${spring.version}</version>
  588. </dependency>
  589. <dependency>
  590. <groupId>org.springframework</groupId>
  591. <artifactId>spring-aop</artifactId>
  592. <version>${spring.version}</version>
  593. </dependency>
  594. <dependency>
  595. <groupId>org.springframework</groupId>
  596. <artifactId>spring-context</artifactId>
  597. <version>${spring.version}</version>
  598. </dependency>
  599. <dependency>
  600. <groupId>org.springframework</groupId>
  601. <artifactId>spring-context-support</artifactId>
  602. <version>${spring.version}</version>
  603. </dependency>
  604. <dependency>
  605. <groupId>org.springframework.ldap</groupId>
  606. <artifactId>spring-ldap-core</artifactId>
  607. <version>1.3.0.RC1</version>
  608. </dependency>
  609. <dependency>
  610. <groupId>org.aspectj</groupId>
  611. <artifactId>com.springsource.org.aspectj.runtime</artifactId>
  612. <version>1.6.2.RELEASE</version>
  613. </dependency>
  614. <dependency>
  615. <groupId>org.aspectj</groupId>
  616. <artifactId>com.springsource.org.aspectj.weaver</artifactId>
  617. <version>1.6.2.RELEASE</version>
  618. </dependency>
  619. <dependency>
  620. <groupId>org.springframework</groupId>
  621. <artifactId>spring-webmvc</artifactId>
  622. <version>${spring.version}</version>
  623. </dependency>
  624. <dependency>
  625. <groupId>cglib</groupId>
  626. <artifactId>cglib-nodep</artifactId>
  627. <scope>test</scope>
  628. <optional>true</optional>
  629. <version>2.1_3</version>
  630. </dependency>
  631. <dependency>
  632. <groupId>log4j</groupId>
  633. <artifactId>log4j</artifactId>
  634. <version>1.2.14</version> <!-- 1.2.15 has some JMX dependencies we don't want in its POM -->
  635. <optional>true</optional>
  636. <scope>runtime</scope>
  637. </dependency>
  638. <dependency>
  639. <groupId>net.sf.ehcache</groupId>
  640. <artifactId>ehcache</artifactId>
  641. <version>1.4.1</version>
  642. </dependency>
  643. <dependency>
  644. <groupId>commons-collections</groupId>
  645. <artifactId>commons-collections</artifactId>
  646. <version>3.2</version>
  647. </dependency>
  648. <dependency>
  649. <groupId>hsqldb</groupId>
  650. <artifactId>hsqldb</artifactId>
  651. <version>1.8.0.7</version>
  652. </dependency>
  653. <dependency>
  654. <groupId>org.jmock</groupId>
  655. <artifactId>jmock-junit4</artifactId>
  656. <version>2.5.1</version>
  657. <scope>test</scope>
  658. </dependency>
  659. <dependency>
  660. <groupId>commons-logging</groupId>
  661. <artifactId>commons-logging</artifactId>
  662. <version>1.1.1</version>
  663. <optional>true</optional>
  664. </dependency>
  665. <dependency>
  666. <groupId>commons-codec</groupId>
  667. <artifactId>commons-codec</artifactId>
  668. <version>1.3</version>
  669. </dependency>
  670. <dependency>
  671. <groupId>javax.servlet</groupId>
  672. <artifactId>servlet-api</artifactId>
  673. <version>2.4</version>
  674. <scope>provided</scope>
  675. </dependency>
  676. <dependency>
  677. <groupId>javax.servlet</groupId>
  678. <artifactId>jstl</artifactId>
  679. <version>${jstl.version}</version>
  680. <scope>runtime</scope>
  681. </dependency>
  682. <dependency>
  683. <groupId>taglibs</groupId>
  684. <artifactId>standard</artifactId>
  685. <version>${jstl.version}</version>
  686. <scope>runtime</scope>
  687. </dependency>
  688. </dependencies>
  689. </dependencyManagement>
  690. <properties>
  691. <spring.version>2.5.6</spring.version>
  692. <jstl.version>1.1.2</jstl.version>
  693. <jetty.version>6.1.11</jetty.version>
  694. <docbook.source>${basedir}/src/docbkx</docbook.source>
  695. <docbook.target>${basedir}/target/site/guide</docbook.target>
  696. </properties>
  697. </project>