pom.xml 31 KB

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