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. <dependency>
  291. <groupId>org.jmock</groupId>
  292. <artifactId>jmock-junit4</artifactId>
  293. <version>2.5.1</version>
  294. <scope>test</scope>
  295. </dependency>
  296. </dependencies>
  297. <build>
  298. <extensions>
  299. <extension>
  300. <groupId>org.springframework.aws</groupId>
  301. <artifactId>spring-aws-maven</artifactId>
  302. <version>1.2.2</version>
  303. </extension>
  304. </extensions>
  305. <plugins>
  306. <plugin>
  307. <groupId>org.apache.maven.plugins</groupId>
  308. <artifactId>maven-help-plugin</artifactId>
  309. <version>2.0.1</version>
  310. </plugin>
  311. <plugin>
  312. <groupId>org.apache.maven.plugins</groupId>
  313. <artifactId>maven-clean-plugin</artifactId>
  314. <version>2.2</version>
  315. </plugin>
  316. <plugin>
  317. <groupId>org.apache.maven.plugins</groupId>
  318. <artifactId>maven-resources-plugin</artifactId>
  319. <version>2.2</version>
  320. </plugin>
  321. <plugin>
  322. <groupId>org.apache.maven.plugins</groupId>
  323. <artifactId>maven-surefire-plugin</artifactId>
  324. <version>2.4.2</version>
  325. <configuration>
  326. <includes>
  327. <include>**/*Tests.class</include>
  328. </includes>
  329. <excludes>
  330. <exclude>**/Abstract*</exclude>
  331. </excludes>
  332. <forkMode>once</forkMode>
  333. <systemProperties>
  334. <!-- The working directory for the embedded apache Ldap test server -->
  335. <property>
  336. <name>apacheDSWorkDir</name>
  337. <value>
  338. ${basedir}/target/apacheds-work
  339. </value>
  340. </property>
  341. </systemProperties>
  342. </configuration>
  343. </plugin>
  344. <plugin>
  345. <groupId>org.apache.maven.plugins</groupId>
  346. <artifactId>maven-compiler-plugin</artifactId>
  347. <version>2.0.2</version>
  348. <configuration>
  349. <source>1.5</source>
  350. <target>1.5</target>
  351. </configuration>
  352. </plugin>
  353. <plugin>
  354. <groupId>org.apache.maven.plugins</groupId>
  355. <artifactId>maven-jar-plugin</artifactId>
  356. <version>2.1</version>
  357. <executions>
  358. <execution>
  359. <goals>
  360. <goal>test-jar</goal>
  361. </goals>
  362. <phase>package</phase>
  363. </execution>
  364. </executions>
  365. </plugin>
  366. <plugin>
  367. <groupId>org.apache.maven.plugins</groupId>
  368. <artifactId>maven-source-plugin</artifactId>
  369. <version>2.0.3</version>
  370. <configuration>
  371. <attach>true</attach>
  372. </configuration>
  373. <executions>
  374. <execution>
  375. <goals>
  376. <goal>jar</goal>
  377. </goals>
  378. </execution>
  379. </executions>
  380. </plugin>
  381. <!-- Other -->
  382. <plugin>
  383. <groupId>org.apache.maven.plugins</groupId>
  384. <artifactId>maven-war-plugin</artifactId>
  385. <version>2.0.2</version>
  386. </plugin>
  387. <plugin>
  388. <groupId>org.apache.maven.plugins</groupId>
  389. <artifactId>maven-assembly-plugin</artifactId>
  390. <version>2.1</version>
  391. </plugin>
  392. <plugin>
  393. <groupId>org.apache.maven.plugins</groupId>
  394. <artifactId>maven-install-plugin</artifactId>
  395. <version>2.2</version>
  396. </plugin>
  397. <plugin>
  398. <groupId>org.apache.maven.plugins</groupId>
  399. <artifactId>maven-deploy-plugin</artifactId>
  400. <version>2.3</version>
  401. </plugin>
  402. <plugin>
  403. <groupId>org.apache.maven.plugins</groupId>
  404. <artifactId>maven-release-plugin</artifactId>
  405. <version>2.0-beta-7</version>
  406. <configuration>
  407. <tagBase>
  408. https://src.springframework.org/svn/spring-security/tags
  409. </tagBase>
  410. </configuration>
  411. </plugin>
  412. <!-- IDE -->
  413. <plugin>
  414. <groupId>org.apache.maven.plugins</groupId>
  415. <artifactId>maven-eclipse-plugin</artifactId>
  416. <version>2.5.1</version>
  417. <configuration>
  418. <downloadSources>true</downloadSources>
  419. <wtpversion>2.0</wtpversion>
  420. </configuration>
  421. </plugin>
  422. <plugin>
  423. <groupId>org.apache.maven.plugins</groupId>
  424. <artifactId>maven-idea-plugin</artifactId>
  425. <version>2.0</version>
  426. <configuration>
  427. <downloadSources>true</downloadSources>
  428. <!--<downloadJavadocs>true</downloadJavadocs>-->
  429. <dependenciesAsLibraries>
  430. true
  431. </dependenciesAsLibraries>
  432. </configuration>
  433. </plugin>
  434. <!-- Site -->
  435. <plugin>
  436. <groupId>org.apache.maven.plugins</groupId>
  437. <artifactId>maven-site-plugin</artifactId>
  438. <version>2.0-beta-6</version>
  439. </plugin>
  440. <plugin>
  441. <groupId>com.agilejava.docbkx</groupId>
  442. <artifactId>docbkx-maven-plugin</artifactId>
  443. <version>2.0.7</version>
  444. <executions>
  445. <execution>
  446. <goals>
  447. <goal>generate-html</goal>
  448. <goal>generate-pdf</goal>
  449. </goals>
  450. <phase>pre-site</phase>
  451. </execution>
  452. </executions>
  453. <dependencies>
  454. <dependency>
  455. <groupId>org.docbook</groupId>
  456. <artifactId>docbook-xml</artifactId>
  457. <version>4.4</version>
  458. <scope>runtime</scope>
  459. </dependency>
  460. </dependencies>
  461. <configuration>
  462. <includes>springsecurity.xml</includes>
  463. <chunkedOutput>true</chunkedOutput>
  464. <htmlStylesheet>css/html.css</htmlStylesheet>
  465. <xincludeSupported>true</xincludeSupported>
  466. <htmlCustomization>src/docbkx/resources/xsl/html_chunk.xsl</htmlCustomization>
  467. <foCustomization>src/docbkx/resources/xsl/fopdf.xsl</foCustomization>
  468. <entities>
  469. <entity>
  470. <name>version</name>
  471. <value>${pom.version}</value>
  472. </entity>
  473. </entities>
  474. <postProcess>
  475. <copy todir="target/site/reference">
  476. <fileset dir="target/docbkx">
  477. <include name="**/*.html" />
  478. <include name="**/*.pdf" />
  479. </fileset>
  480. </copy>
  481. <copy todir="target/site/reference/html">
  482. <fileset dir="src/docbkx/resources">
  483. <include name="**/*.css" />
  484. <include name="**/*.png" />
  485. <include name="**/*.gif" />
  486. <include name="**/*.jpg" />
  487. </fileset>
  488. </copy>
  489. </postProcess>
  490. </configuration>
  491. </plugin>
  492. </plugins>
  493. </build>
  494. <reporting>
  495. <plugins>
  496. <plugin>
  497. <groupId>org.apache.maven.plugins</groupId>
  498. <artifactId>maven-surefire-report-plugin</artifactId>
  499. <version>2.4.2</version>
  500. <!--
  501. <configuration>
  502. <aggregate>true</aggregate>
  503. </configuration>
  504. -->
  505. </plugin>
  506. <plugin>
  507. <groupId>org.apache.maven.plugins</groupId>
  508. <artifactId>maven-jxr-plugin</artifactId>
  509. <configuration>
  510. <aggregate>true</aggregate>
  511. <excludes>
  512. <exclude>bigbank/**</exclude>
  513. </excludes>
  514. </configuration>
  515. </plugin>
  516. <!--
  517. <plugin>
  518. <groupId>org.apache.maven.plugins</groupId>
  519. <artifactId>maven-checkstyle-plugin</artifactId>
  520. <configuration>
  521. <configLocation>
  522. acegi_checkstyle.xml
  523. </configLocation>
  524. </configuration>
  525. </plugin>
  526. -->
  527. <plugin>
  528. <groupId>org.codehaus.mojo</groupId>
  529. <artifactId>cobertura-maven-plugin</artifactId>
  530. <version>2.2</version>
  531. </plugin>
  532. <plugin>
  533. <groupId>org.apache.maven.plugins</groupId>
  534. <artifactId>maven-javadoc-plugin</artifactId>
  535. <version>2.4</version>
  536. <configuration>
  537. <aggregate>true</aggregate>
  538. <header>Spring Security Framework</header>
  539. <quiet>true</quiet>
  540. <excludePackageNames>sample,bigbank,zzz</excludePackageNames>
  541. <links>
  542. <link>
  543. http://java.sun.com/j2se/1.5.0/docs/api
  544. </link>
  545. <link>
  546. http://static.springframework.org/spring/docs/2.5.x/api/
  547. </link>
  548. <link>
  549. http://commons.apache.org/dbcp/apidocs/
  550. </link>
  551. <link>
  552. http://commons.apache.org/httpclient/apidocs/
  553. </link>
  554. <link>
  555. http://commons.apache.org/pool/apidocs/
  556. </link>
  557. <link>
  558. http://commons.apache.org/lang/api/
  559. </link>
  560. <link>
  561. http://commons.apache.org/codec/apidocs/
  562. </link>
  563. <link>
  564. http://commons.apache.org/collections/apidocs/
  565. </link>
  566. <link>
  567. http://velocity.apache.org/engine/releases/velocity-1.5/apidocs/
  568. </link>
  569. <link>
  570. http://developer.ja-sig.org/projects/cas/cas-server-core/cas-server/cas-server-core/apidocs/
  571. </link>
  572. <link>
  573. http://tomcat.apache.org/tomcat-5.5-doc/servletapi/
  574. </link>
  575. </links>
  576. </configuration>
  577. <reportSets>
  578. <reportSet>
  579. <reports>
  580. <report>javadoc</report>
  581. <!--<report>test-javadoc</report> -->
  582. </reports>
  583. </reportSet>
  584. </reportSets>
  585. </plugin>
  586. <plugin>
  587. <groupId>org.codehaus.mojo</groupId>
  588. <artifactId>taglist-maven-plugin</artifactId>
  589. </plugin>
  590. <plugin>
  591. <groupId>org.apache.maven.plugins</groupId>
  592. <artifactId>maven-project-info-reports-plugin</artifactId>
  593. <version>2.0.1</version>
  594. <!--
  595. <reportSets>
  596. <reportSet>
  597. <reports>
  598. <report>dependencies</report>
  599. <report>project-team</report>
  600. <report>mailing-list</report>
  601. <report>issue-tracking</report>
  602. <report>license</report>
  603. </reports>
  604. </reportSet>
  605. </reportSets>
  606. -->
  607. </plugin>
  608. </plugins>
  609. </reporting>
  610. <dependencyManagement>
  611. <dependencies>
  612. <dependency>
  613. <groupId>org.springframework</groupId>
  614. <artifactId>org.springframework.core</artifactId>
  615. <version>${spring.version}</version>
  616. <exclusions>
  617. <exclusion>
  618. <groupId>org.apache.commons</groupId>
  619. <artifactId>com.springsource.org.apache.commons.logging</artifactId>
  620. </exclusion>
  621. </exclusions>
  622. </dependency>
  623. <dependency>
  624. <groupId>org.springframework</groupId>
  625. <artifactId>org.springframework.expression</artifactId>
  626. <version>${spring.version}</version>
  627. <exclusions>
  628. <exclusion>
  629. <groupId>org.apache.commons</groupId>
  630. <artifactId>com.springsource.org.apache.commons.logging</artifactId>
  631. </exclusion>
  632. <!--
  633. <exclusion>
  634. <groupId>org.antlr</groupId>
  635. <artifactId>com.springsource.org.antlr</artifactId>
  636. </exclusion>
  637. -->
  638. </exclusions>
  639. <optional>true</optional>
  640. </dependency>
  641. <dependency>
  642. <groupId>org.springframework</groupId>
  643. <artifactId>org.springframework.test</artifactId>
  644. <version>${spring.version}</version>
  645. <exclusions>
  646. <exclusion>
  647. <groupId>org.apache.commons</groupId>
  648. <artifactId>com.springsource.org.apache.commons.logging</artifactId>
  649. </exclusion>
  650. </exclusions>
  651. </dependency>
  652. <dependency>
  653. <groupId>org.springframework</groupId>
  654. <artifactId>org.springframework.jdbc</artifactId>
  655. <version>${spring.version}</version>
  656. <exclusions>
  657. <exclusion>
  658. <groupId>org.apache.commons</groupId>
  659. <artifactId>com.springsource.org.apache.commons.logging</artifactId>
  660. </exclusion>
  661. </exclusions>
  662. </dependency>
  663. <dependency>
  664. <groupId>org.springframework</groupId>
  665. <artifactId>org.springframework.transaction</artifactId>
  666. <version>${spring.version}</version>
  667. <exclusions>
  668. <exclusion>
  669. <groupId>org.apache.commons</groupId>
  670. <artifactId>com.springsource.org.apache.commons.logging</artifactId>
  671. </exclusion>
  672. </exclusions>
  673. </dependency>
  674. <dependency>
  675. <groupId>org.springframework</groupId>
  676. <artifactId>org.springframework.aop</artifactId>
  677. <version>${spring.version}</version>
  678. <exclusions>
  679. <exclusion>
  680. <groupId>org.apache.commons</groupId>
  681. <artifactId>com.springsource.org.apache.commons.logging</artifactId>
  682. </exclusion>
  683. </exclusions>
  684. </dependency>
  685. <dependency>
  686. <groupId>org.springframework</groupId>
  687. <artifactId>org.springframework.context</artifactId>
  688. <version>${spring.version}</version>
  689. <exclusions>
  690. <exclusion>
  691. <groupId>org.apache.commons</groupId>
  692. <artifactId>com.springsource.org.apache.commons.logging</artifactId>
  693. </exclusion>
  694. </exclusions>
  695. </dependency>
  696. <dependency>
  697. <groupId>org.springframework</groupId>
  698. <artifactId>org.springframework.context.support</artifactId>
  699. <version>${spring.version}</version>
  700. <exclusions>
  701. <exclusion>
  702. <groupId>org.apache.commons</groupId>
  703. <artifactId>com.springsource.org.apache.commons.logging</artifactId>
  704. </exclusion>
  705. </exclusions>
  706. </dependency>
  707. <dependency>
  708. <groupId>org.springframework</groupId>
  709. <artifactId>org.springframework.web</artifactId>
  710. <version>${spring.version}</version>
  711. <exclusions>
  712. <exclusion>
  713. <groupId>org.apache.commons</groupId>
  714. <artifactId>com.springsource.org.apache.commons.logging</artifactId>
  715. </exclusion>
  716. </exclusions>
  717. </dependency>
  718. <dependency>
  719. <groupId>org.springframework</groupId>
  720. <artifactId>org.springframework.web.servlet</artifactId>
  721. <version>${spring.version}</version>
  722. <exclusions>
  723. <exclusion>
  724. <groupId>org.apache.commons</groupId>
  725. <artifactId>com.springsource.org.apache.commons.logging</artifactId>
  726. </exclusion>
  727. </exclusions>
  728. </dependency>
  729. <dependency>
  730. <groupId>org.springframework.ldap</groupId>
  731. <artifactId>spring-ldap-core</artifactId>
  732. <version>1.3.0.RELEASE</version>
  733. <exclusions>
  734. <exclusion>
  735. <groupId>org.springframework</groupId>
  736. <artifactId>spring-core</artifactId>
  737. </exclusion>
  738. <exclusion>
  739. <groupId>org.springframework</groupId>
  740. <artifactId>spring-beans</artifactId>
  741. </exclusion>
  742. <exclusion>
  743. <groupId>commons-logging</groupId>
  744. <artifactId>commons-logging</artifactId>
  745. </exclusion>
  746. </exclusions>
  747. </dependency>
  748. <dependency>
  749. <groupId>org.aspectj</groupId>
  750. <artifactId>com.springsource.org.aspectj.runtime</artifactId>
  751. <version>1.6.2.RELEASE</version>
  752. </dependency>
  753. <dependency>
  754. <groupId>org.aspectj</groupId>
  755. <artifactId>com.springsource.org.aspectj.weaver</artifactId>
  756. <version>1.6.2.RELEASE</version>
  757. </dependency>
  758. <!-- Used by SPEL
  759. <dependency>
  760. <groupId>org.antlr</groupId>
  761. <artifactId>antlr</artifactId>
  762. <version>3.0.1</version>
  763. <optional>true</optional>
  764. <scope>runtime</scope>
  765. </dependency>
  766. -->
  767. <dependency>
  768. <!-- Required by SPEL -->
  769. <groupId>asm</groupId>
  770. <artifactId>asm-all</artifactId>
  771. <version>2.2.3</version>
  772. <optional>true</optional>
  773. <scope>runtime</scope>
  774. </dependency>
  775. <dependency>
  776. <groupId>cglib</groupId>
  777. <artifactId>cglib-nodep</artifactId>
  778. <scope>test</scope>
  779. <optional>true</optional>
  780. <version>2.1_3</version>
  781. </dependency>
  782. <dependency>
  783. <groupId>net.sf.ehcache</groupId>
  784. <artifactId>ehcache</artifactId>
  785. <version>1.4.1</version>
  786. </dependency>
  787. <dependency>
  788. <groupId>commons-collections</groupId>
  789. <artifactId>commons-collections</artifactId>
  790. <version>3.2</version>
  791. </dependency>
  792. <dependency>
  793. <groupId>org.apache.tomcat</groupId>
  794. <artifactId>annotations-api</artifactId>
  795. <version>6.0.14</version>
  796. </dependency>
  797. <dependency>
  798. <groupId>hsqldb</groupId>
  799. <artifactId>hsqldb</artifactId>
  800. <version>1.8.0.7</version>
  801. <scope>runtime</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>