pom.xml 33 KB

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