pom.xml 33 KB

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