pom.xml 28 KB

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