pom.xml 33 KB

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