pom.xml 31 KB

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