pom.xml 28 KB

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