pom.xml 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775
  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. -->
  82. <repository>
  83. <releases>
  84. <enabled>false</enabled>
  85. </releases>
  86. <snapshots>
  87. <enabled>true</enabled>
  88. </snapshots>
  89. <id>com.springsource.repository.maven.snapshot</id>
  90. <name>SpringSource Enterprise Bundle Maven Repository - SpringSource Snapshot Releases</name>
  91. <url>http://maven.springframework.org/snapshot</url>
  92. </repository>
  93. <repository>
  94. <releases>
  95. <enabled>true</enabled>
  96. </releases>
  97. <snapshots>
  98. <enabled>false</enabled>
  99. </snapshots>
  100. <id>com.springsource.repository.maven.milestone</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.maven.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. </plugins>
  420. </build>
  421. <reporting>
  422. <plugins>
  423. <plugin>
  424. <groupId>org.apache.maven.plugins</groupId>
  425. <artifactId>maven-surefire-report-plugin</artifactId>
  426. <version>2.4.2</version>
  427. <!--
  428. <configuration>
  429. <aggregate>true</aggregate>
  430. </configuration>
  431. -->
  432. </plugin>
  433. <plugin>
  434. <groupId>org.apache.maven.plugins</groupId>
  435. <artifactId>maven-jxr-plugin</artifactId>
  436. <configuration>
  437. <aggregate>true</aggregate>
  438. <excludes>
  439. <exclude>bigbank/**</exclude>
  440. </excludes>
  441. </configuration>
  442. </plugin>
  443. <!--
  444. <plugin>
  445. <groupId>org.apache.maven.plugins</groupId>
  446. <artifactId>maven-checkstyle-plugin</artifactId>
  447. <configuration>
  448. <configLocation>
  449. acegi_checkstyle.xml
  450. </configLocation>
  451. </configuration>
  452. </plugin>
  453. -->
  454. <plugin>
  455. <groupId>org.codehaus.mojo</groupId>
  456. <artifactId>cobertura-maven-plugin</artifactId>
  457. <version>2.2</version>
  458. </plugin>
  459. <plugin>
  460. <groupId>org.apache.maven.plugins</groupId>
  461. <artifactId>maven-javadoc-plugin</artifactId>
  462. <version>2.5</version>
  463. <configuration>
  464. <excludePackageNames>sample:bigbank:zzz</excludePackageNames>
  465. <breakiterator>true</breakiterator>
  466. <aggregate>true</aggregate>
  467. <links>
  468. <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
  469. <link>http://static.springframework.org/spring/docs/3.0.x/javadoc-api/</link>
  470. <link>http://commons.apache.org/httpclient/apidocs/</link>
  471. <link>http://developer.ja-sig.org/projects/cas/cas-server-core/cas-server/cas-server-core/apidocs/</link>
  472. <link>http://tomcat.apache.org/tomcat-5.5-doc/servletapi/</link>
  473. </links>
  474. </configuration>
  475. <reportSets>
  476. <reportSet>
  477. <reports>
  478. <report>javadoc</report>
  479. </reports>
  480. </reportSet>
  481. </reportSets>
  482. </plugin>
  483. <plugin>
  484. <groupId>org.codehaus.mojo</groupId>
  485. <artifactId>taglist-maven-plugin</artifactId>
  486. </plugin>
  487. <plugin>
  488. <groupId>org.apache.maven.plugins</groupId>
  489. <artifactId>maven-project-info-reports-plugin</artifactId>
  490. <version>2.0.1</version>
  491. <!--
  492. <reportSets>
  493. <reportSet>
  494. <reports>
  495. <report>dependencies</report>
  496. <report>project-team</report>
  497. <report>mailing-list</report>
  498. <report>issue-tracking</report>
  499. <report>license</report>
  500. </reports>
  501. </reportSet>
  502. </reportSets>
  503. -->
  504. </plugin>
  505. </plugins>
  506. </reporting>
  507. <dependencyManagement>
  508. <dependencies>
  509. <dependency>
  510. <groupId>org.springframework</groupId>
  511. <artifactId>spring-core</artifactId>
  512. <version>${spring.version}</version>
  513. <exclusions>
  514. <exclusion>
  515. <groupId>commons-logging</groupId>
  516. <artifactId>commons-logging</artifactId>
  517. </exclusion>
  518. </exclusions>
  519. </dependency>
  520. <dependency>
  521. <groupId>org.springframework</groupId>
  522. <artifactId>spring-expression</artifactId>
  523. <version>${spring.version}</version>
  524. <exclusions>
  525. <exclusion>
  526. <groupId>commons-logging</groupId>
  527. <artifactId>commons-logging</artifactId>
  528. </exclusion>
  529. <!--
  530. <exclusion>
  531. <groupId>org.antlr</groupId>
  532. <artifactId>com.springsource.org.antlr</artifactId>
  533. </exclusion>
  534. -->
  535. </exclusions>
  536. <optional>true</optional>
  537. </dependency>
  538. <dependency>
  539. <groupId>org.springframework</groupId>
  540. <artifactId>spring-test</artifactId>
  541. <version>${spring.version}</version>
  542. <exclusions>
  543. <exclusion>
  544. <groupId>commons-logging</groupId>
  545. <artifactId>commons-logging</artifactId>
  546. </exclusion>
  547. </exclusions>
  548. </dependency>
  549. <dependency>
  550. <groupId>org.springframework</groupId>
  551. <artifactId>spring-jdbc</artifactId>
  552. <version>${spring.version}</version>
  553. <exclusions>
  554. <exclusion>
  555. <groupId>commons-logging</groupId>
  556. <artifactId>commons-logging</artifactId>
  557. </exclusion>
  558. </exclusions>
  559. </dependency>
  560. <dependency>
  561. <groupId>org.springframework</groupId>
  562. <artifactId>spring-tx</artifactId>
  563. <version>${spring.version}</version>
  564. <exclusions>
  565. <exclusion>
  566. <groupId>commons-logging</groupId>
  567. <artifactId>commons-logging</artifactId>
  568. </exclusion>
  569. </exclusions>
  570. </dependency>
  571. <dependency>
  572. <groupId>org.springframework</groupId>
  573. <artifactId>spring-aop</artifactId>
  574. <version>${spring.version}</version>
  575. <exclusions>
  576. <exclusion>
  577. <groupId>commons-logging</groupId>
  578. <artifactId>commons-logging</artifactId>
  579. </exclusion>
  580. </exclusions>
  581. </dependency>
  582. <dependency>
  583. <groupId>org.springframework</groupId>
  584. <artifactId>spring-context</artifactId>
  585. <version>${spring.version}</version>
  586. <exclusions>
  587. <exclusion>
  588. <groupId>commons-logging</groupId>
  589. <artifactId>commons-logging</artifactId>
  590. </exclusion>
  591. </exclusions>
  592. </dependency>
  593. <dependency>
  594. <groupId>org.springframework</groupId>
  595. <artifactId>spring-context-support</artifactId>
  596. <version>${spring.version}</version>
  597. <exclusions>
  598. <exclusion>
  599. <groupId>commons-logging</groupId>
  600. <artifactId>commons-logging</artifactId>
  601. </exclusion>
  602. <exclusion>
  603. <!-- M3 Pom contains an invalid quartz dep -->
  604. <groupId>quartz</groupId>
  605. <artifactId>quartz</artifactId>
  606. </exclusion>
  607. </exclusions>
  608. </dependency>
  609. <dependency>
  610. <groupId>org.springframework</groupId>
  611. <artifactId>spring-web</artifactId>
  612. <version>${spring.version}</version>
  613. <exclusions>
  614. <exclusion>
  615. <groupId>commons-logging</groupId>
  616. <artifactId>commons-logging</artifactId>
  617. </exclusion>
  618. </exclusions>
  619. </dependency>
  620. <dependency>
  621. <groupId>org.springframework</groupId>
  622. <artifactId>spring-webmvc</artifactId>
  623. <version>${spring.version}</version>
  624. <exclusions>
  625. <exclusion>
  626. <groupId>commons-logging</groupId>
  627. <artifactId>commons-logging</artifactId>
  628. </exclusion>
  629. </exclusions>
  630. </dependency>
  631. <dependency>
  632. <groupId>org.springframework.ldap</groupId>
  633. <artifactId>spring-ldap-core</artifactId>
  634. <version>1.3.0.RELEASE</version>
  635. <exclusions>
  636. <exclusion>
  637. <groupId>org.springframework</groupId>
  638. <artifactId>spring-core</artifactId>
  639. </exclusion>
  640. <exclusion>
  641. <groupId>org.springframework</groupId>
  642. <artifactId>spring-tx</artifactId>
  643. </exclusion>
  644. <exclusion>
  645. <groupId>org.springframework</groupId>
  646. <artifactId>spring-beans</artifactId>
  647. </exclusion>
  648. <exclusion>
  649. <groupId>commons-logging</groupId>
  650. <artifactId>commons-logging</artifactId>
  651. </exclusion>
  652. </exclusions>
  653. </dependency>
  654. <dependency>
  655. <groupId>org.aspectj</groupId>
  656. <artifactId>aspectjrt</artifactId>
  657. <version>1.6.4</version>
  658. </dependency>
  659. <dependency>
  660. <groupId>org.aspectj</groupId>
  661. <artifactId>aspectjweaver</artifactId>
  662. <version>1.6.4</version>
  663. </dependency>
  664. <!-- Used by SPEL
  665. <dependency>
  666. <groupId>org.antlr</groupId>
  667. <artifactId>antlr</artifactId>
  668. <version>3.0.1</version>
  669. <optional>true</optional>
  670. <scope>runtime</scope>
  671. </dependency>
  672. <dependency>
  673. <groupId>asm</groupId>
  674. <artifactId>asm-all</artifactId>
  675. <version>2.2.3</version>
  676. <optional>true</optional>
  677. <scope>runtime</scope>
  678. </dependency>
  679. -->
  680. <dependency>
  681. <groupId>cglib</groupId>
  682. <artifactId>cglib-nodep</artifactId>
  683. <scope>test</scope>
  684. <optional>true</optional>
  685. <version>2.1_3</version>
  686. </dependency>
  687. <dependency>
  688. <groupId>net.sf.ehcache</groupId>
  689. <artifactId>ehcache</artifactId>
  690. <version>1.4.1</version>
  691. </dependency>
  692. <dependency>
  693. <groupId>commons-collections</groupId>
  694. <artifactId>commons-collections</artifactId>
  695. <version>3.2</version>
  696. </dependency>
  697. <dependency>
  698. <groupId>org.apache.tomcat</groupId>
  699. <artifactId>annotations-api</artifactId>
  700. <version>6.0.14</version>
  701. </dependency>
  702. <dependency>
  703. <groupId>hsqldb</groupId>
  704. <artifactId>hsqldb</artifactId>
  705. <version>1.8.0.7</version>
  706. <scope>runtime</scope>
  707. </dependency>
  708. <dependency>
  709. <groupId>commons-logging</groupId>
  710. <artifactId>commons-logging</artifactId>
  711. <version>1.1.1</version>
  712. <optional>true</optional>
  713. </dependency>
  714. <dependency>
  715. <groupId>commons-codec</groupId>
  716. <artifactId>commons-codec</artifactId>
  717. <version>1.3</version>
  718. </dependency>
  719. <dependency>
  720. <groupId>javax.servlet</groupId>
  721. <artifactId>servlet-api</artifactId>
  722. <version>2.4</version>
  723. <scope>provided</scope>
  724. </dependency>
  725. <dependency>
  726. <groupId>javax.servlet</groupId>
  727. <artifactId>jstl</artifactId>
  728. <version>${jstl.version}</version>
  729. <scope>runtime</scope>
  730. </dependency>
  731. <dependency>
  732. <groupId>taglibs</groupId>
  733. <artifactId>standard</artifactId>
  734. <version>${jstl.version}</version>
  735. <scope>runtime</scope>
  736. </dependency>
  737. <dependency>
  738. <groupId>log4j</groupId>
  739. <artifactId>log4j</artifactId>
  740. <version>1.2.14</version> <!-- 1.2.15 has some JMX dependencies we don't want in its POM -->
  741. <optional>true</optional>
  742. <scope>runtime</scope>
  743. </dependency>
  744. </dependencies>
  745. </dependencyManagement>
  746. <properties>
  747. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  748. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  749. <spring.version>3.0.0.BUILD-SNAPSHOT</spring.version>
  750. <jstl.version>1.1.2</jstl.version>
  751. <jetty.version>6.1.18</jetty.version>
  752. </properties>
  753. </project>