pom.xml 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>org.springframework.security</groupId>
  5. <artifactId>spring-security-parent</artifactId>
  6. <version>2.0.2-SNAPSHOT</version>
  7. <name>Spring Security</name>
  8. <packaging>pom</packaging>
  9. <modules>
  10. <module>core</module>
  11. <module>core-tiger</module>
  12. <module>adapters</module>
  13. <module>portlet</module>
  14. <module>ntlm</module>
  15. <module>openid</module>
  16. <module>samples</module>
  17. <module>cas</module>
  18. <module>acl</module>
  19. <module>taglibs</module>
  20. <module>sandbox</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://acegisecurity.svn.sourceforge.net/svnroot/acegisecurity/spring-security/trunk</connection>
  39. <developerConnection>scm:svn:https://acegisecurity.svn.sourceforge.net/svnroot/acegisecurity/spring-security/trunk</developerConnection>
  40. <url>http://acegisecurity.svn.sourceforge.net/viewcvs.cgi/acegisecurity/spring-security/trunk/</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. <!--
  65. This variable is set by the build release script. You can also set it on the command line if
  66. you are running maven directly. e.g. mvn site -DsiteDirectory=file:///home/joe/mysite
  67. -->
  68. <url>${siteDirectory}</url>
  69. </site>
  70. </distributionManagement>
  71. <repositories>
  72. <repository>
  73. <id>spring-release</id>
  74. <name>Spring Portfolio Release Repository</name>
  75. <url>http://s3.amazonaws.com/maven.springframework.org/release</url>
  76. </repository>
  77. <repository>
  78. <id>spring-external</id>
  79. <name>Spring Portfolio Release Repository</name>
  80. <url>http://s3.amazonaws.com/maven.springframework.org/external</url>
  81. </repository>
  82. </repositories>
  83. <mailingLists>
  84. <mailingList>
  85. <name>Acegi Developer List</name>
  86. <subscribe>
  87. https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer
  88. </subscribe>
  89. <!--
  90. <unsubscribe>https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer</unsubscribe>
  91. <post>acegisecurity-developer@lists.sourceforge.net</post>
  92. -->
  93. <archive>
  94. http://sourceforge.net/mailarchive/forum.php?forum_id=40659
  95. </archive>
  96. <otherArchives>
  97. <otherArchive>
  98. http://news.gmane.org/gmane.comp.java.springframework.acegisecurity.devel/
  99. </otherArchive>
  100. <otherArchive>
  101. http://www.mail-archive.com/acegisecurity-developer@lists.sourceforge.net/
  102. </otherArchive>
  103. </otherArchives>
  104. </mailingList>
  105. </mailingLists>
  106. <developers>
  107. <developer>
  108. <name>Ben Alex</name>
  109. <id>benalex</id>
  110. <email>benalex at users.sourceforge.net</email>
  111. <organization>
  112. SpringSource
  113. </organization>
  114. <timezone>+10</timezone>
  115. </developer>
  116. <developer>
  117. <name>Colin Sampaleanu</name>
  118. <id>colins</id>
  119. <email>colinml1 at exis.com</email>
  120. </developer>
  121. <developer>
  122. <name>Carlos Sanchez</name>
  123. <id>carlossg</id>
  124. <email>carlossg at users.sourceforge.net</email>
  125. <timezone>+1</timezone>
  126. </developer>
  127. <developer>
  128. <name>Luke Taylor</name>
  129. <id>luke_t</id>
  130. <email>luke_t at users.sourceforge.net</email>
  131. <organization>
  132. SpringSource
  133. </organization>
  134. <timezone>0</timezone>
  135. </developer>
  136. <developer>
  137. <name>Ray Krueger</name>
  138. <id>raykrueger</id>
  139. <email>raykrueger at users.sourceforge.net</email>
  140. </developer>
  141. <developer>
  142. <name>Mark St.Godard</name>
  143. <id>markstg</id>
  144. <email>markstg at users.sourceforge.net</email>
  145. </developer>
  146. <developer>
  147. <name>John A. Lewis</name>
  148. <id>johnalewis</id>
  149. <email>johnalewis at users.sourceforge.net</email>
  150. </developer>
  151. </developers>
  152. <contributors>
  153. <contributor>
  154. <name>Alan Stewart</name>
  155. </contributor>
  156. <contributor>
  157. <name>Cameron Braid</name>
  158. </contributor>
  159. <contributor>
  160. <name>Patrick Burleson</name>
  161. </contributor>
  162. <contributor>
  163. <name>Francois Beausoleil</name>
  164. </contributor>
  165. <contributor>
  166. <name>Wesley Hall</name>
  167. </contributor>
  168. <contributor>
  169. <name>Scott Evans</name>
  170. </contributor>
  171. <contributor>
  172. <name>Travis Gregg</name>
  173. </contributor>
  174. <contributor>
  175. <name>Karel Miarka</name>
  176. </contributor>
  177. <contributor>
  178. <name>James Monaghan</name>
  179. </contributor>
  180. <contributor>
  181. <name>Andrew Petro</name>
  182. </contributor>
  183. <contributor>
  184. <name>Aaron Tang</name>
  185. </contributor>
  186. <contributor>
  187. <name>Orlando Garcia Carmona</name>
  188. </contributor>
  189. <contributor>
  190. <name>Joni Suominen</name>
  191. </contributor>
  192. <contributor>
  193. <name>Sergio Berna</name>
  194. </contributor>
  195. <contributor>
  196. <name>Paulo Neves</name>
  197. </contributor>
  198. <contributor>
  199. <name>Mike Perham</name>
  200. </contributor>
  201. <contributor>
  202. <name>Robin Bramley</name>
  203. </contributor>
  204. <contributor>
  205. <name>Robert Sanders</name>
  206. </contributor>
  207. <contributor>
  208. <name>Vishal Puri</name>
  209. </contributor>
  210. <contributor>
  211. <name>Martin Algesten</name>
  212. </contributor>
  213. <contributor>
  214. <name>Ruud Senden</name>
  215. </contributor>
  216. <contributor>
  217. <name>Michael Mayr</name>
  218. </contributor>
  219. </contributors>
  220. <dependencies>
  221. <dependency>
  222. <groupId>junit</groupId>
  223. <artifactId>junit</artifactId>
  224. <version>4.4</version>
  225. <scope>test</scope>
  226. </dependency>
  227. </dependencies>
  228. <build>
  229. <extensions>
  230. <extension>
  231. <groupId>org.springframework.aws</groupId>
  232. <artifactId>spring-aws-maven</artifactId>
  233. <version>1.2.2</version>
  234. </extension>
  235. </extensions>
  236. <plugins>
  237. <plugin>
  238. <groupId>org.apache.maven.plugins</groupId>
  239. <artifactId>maven-help-plugin</artifactId>
  240. <version>2.0.1</version>
  241. </plugin>
  242. <plugin>
  243. <groupId>org.apache.maven.plugins</groupId>
  244. <artifactId>maven-clean-plugin</artifactId>
  245. <version>2.2</version>
  246. </plugin>
  247. <plugin>
  248. <groupId>org.apache.maven.plugins</groupId>
  249. <artifactId>maven-resources-plugin</artifactId>
  250. <version>2.2</version>
  251. </plugin>
  252. <plugin>
  253. <groupId>org.apache.maven.plugins</groupId>
  254. <artifactId>maven-surefire-plugin</artifactId>
  255. <version>2.4.2</version>
  256. <configuration>
  257. <includes>
  258. <include>**/*Tests.class</include>
  259. </includes>
  260. <excludes>
  261. <exclude>**/Abstract*</exclude>
  262. </excludes>
  263. <forkMode>once</forkMode>
  264. <systemProperties>
  265. <!-- The working directory for the embedded apache Ldap test server -->
  266. <property>
  267. <name>apacheDSWorkDir</name>
  268. <value>
  269. ${basedir}/target/apacheds-work
  270. </value>
  271. </property>
  272. </systemProperties>
  273. </configuration>
  274. </plugin>
  275. <plugin>
  276. <groupId>org.apache.maven.plugins</groupId>
  277. <artifactId>maven-compiler-plugin</artifactId>
  278. <version>2.0.2</version>
  279. <executions>
  280. <execution>
  281. <id>java-1.4-compile</id>
  282. <phase>compile</phase>
  283. <goals>
  284. <goal>compile</goal>
  285. </goals>
  286. <configuration>
  287. <source>1.4</source>
  288. <target>1.4</target>
  289. </configuration>
  290. </execution>
  291. <execution>
  292. <id>java-1.5-compile</id>
  293. <phase>process-test-sources</phase>
  294. <goals>
  295. <goal>testCompile</goal>
  296. </goals>
  297. <configuration>
  298. <source>1.5</source>
  299. <target>1.5</target>
  300. </configuration>
  301. </execution>
  302. </executions>
  303. </plugin>
  304. <plugin>
  305. <groupId>org.apache.maven.plugins</groupId>
  306. <artifactId>maven-jar-plugin</artifactId>
  307. <version>2.1</version>
  308. <executions>
  309. <execution>
  310. <goals>
  311. <goal>test-jar</goal>
  312. </goals>
  313. <phase>package</phase>
  314. </execution>
  315. </executions>
  316. </plugin>
  317. <plugin>
  318. <groupId>org.apache.maven.plugins</groupId>
  319. <artifactId>maven-source-plugin</artifactId>
  320. <version>2.0.3</version>
  321. <configuration>
  322. <attach>true</attach>
  323. </configuration>
  324. <executions>
  325. <execution>
  326. <goals>
  327. <goal>jar</goal>
  328. </goals>
  329. </execution>
  330. </executions>
  331. </plugin>
  332. <!-- Other -->
  333. <plugin>
  334. <groupId>org.apache.maven.plugins</groupId>
  335. <artifactId>maven-war-plugin</artifactId>
  336. <version>2.0.2</version>
  337. </plugin>
  338. <plugin>
  339. <groupId>org.apache.maven.plugins</groupId>
  340. <artifactId>maven-assembly-plugin</artifactId>
  341. <version>2.1</version>
  342. </plugin>
  343. <plugin>
  344. <groupId>org.apache.maven.plugins</groupId>
  345. <artifactId>maven-install-plugin</artifactId>
  346. <version>2.2</version>
  347. </plugin>
  348. <plugin>
  349. <groupId>org.apache.maven.plugins</groupId>
  350. <artifactId>maven-deploy-plugin</artifactId>
  351. <version>2.3</version>
  352. </plugin>
  353. <plugin>
  354. <groupId>org.apache.maven.plugins</groupId>
  355. <artifactId>maven-release-plugin</artifactId>
  356. <version>2.0-beta-7</version>
  357. <configuration>
  358. <tagBase>
  359. https://acegisecurity.svn.sourceforge.net/svnroot/acegisecurity/spring-security/tags
  360. </tagBase>
  361. </configuration>
  362. </plugin>
  363. <!-- IDE -->
  364. <plugin>
  365. <groupId>org.apache.maven.plugins</groupId>
  366. <artifactId>maven-eclipse-plugin</artifactId>
  367. <version>2.5.1</version>
  368. <configuration>
  369. <downloadSources>true</downloadSources>
  370. <wtpversion>2.0</wtpversion>
  371. </configuration>
  372. </plugin>
  373. <plugin>
  374. <groupId>org.apache.maven.plugins</groupId>
  375. <artifactId>maven-idea-plugin</artifactId>
  376. <version>2.0</version>
  377. <configuration>
  378. <downloadSources>true</downloadSources>
  379. <!--<downloadJavadocs>true</downloadJavadocs>-->
  380. <dependenciesAsLibraries>
  381. true
  382. </dependenciesAsLibraries>
  383. </configuration>
  384. </plugin>
  385. <!-- Site -->
  386. <plugin>
  387. <groupId>org.apache.maven.plugins</groupId>
  388. <artifactId>maven-site-plugin</artifactId>
  389. <version>2.0-beta-6</version>
  390. </plugin>
  391. <plugin>
  392. <groupId>com.agilejava.docbkx</groupId>
  393. <artifactId>docbkx-maven-plugin</artifactId>
  394. <version>2.0.7</version>
  395. <executions>
  396. <execution>
  397. <goals>
  398. <goal>generate-html</goal>
  399. <goal>generate-pdf</goal>
  400. </goals>
  401. <phase>pre-site</phase>
  402. </execution>
  403. </executions>
  404. <dependencies>
  405. <dependency>
  406. <groupId>org.docbook</groupId>
  407. <artifactId>docbook-xml</artifactId>
  408. <version>4.4</version>
  409. <scope>runtime</scope>
  410. </dependency>
  411. </dependencies>
  412. <configuration>
  413. <includes>springsecurity.xml</includes>
  414. <chunkedOutput>true</chunkedOutput>
  415. <htmlStylesheet>css/html.css</htmlStylesheet>
  416. <xincludeSupported>true</xincludeSupported>
  417. <htmlCustomization>src/docbkx/resources/xsl/html_chunk.xsl</htmlCustomization>
  418. <foCustomization>src/docbkx/resources/xsl/fopdf.xsl</foCustomization>
  419. <entities>
  420. <entity>
  421. <name>version</name>
  422. <value>${pom.version}</value>
  423. </entity>
  424. </entities>
  425. <postProcess>
  426. <copy todir="target/site/reference">
  427. <fileset dir="target/docbkx">
  428. <include name="**/*.html" />
  429. <include name="**/*.pdf" />
  430. </fileset>
  431. </copy>
  432. <copy todir="target/site/reference/html">
  433. <fileset dir="src/docbkx/resources">
  434. <include name="**/*.css" />
  435. <include name="**/*.png" />
  436. <include name="**/*.gif" />
  437. <include name="**/*.jpg" />
  438. </fileset>
  439. </copy>
  440. </postProcess>
  441. </configuration>
  442. </plugin>
  443. <!-- OSGi Felix bundle plugin -->
  444. <plugin>
  445. <groupId>org.apache.felix</groupId>
  446. <artifactId>maven-bundle-plugin</artifactId>
  447. <version>1.4.0</version>
  448. <extensions>true</extensions>
  449. <configuration>
  450. <obrRepository>NONE</obrRepository>
  451. <instructions>
  452. <!-- bundle specific conf -->
  453. <Bundle-Name>${artifactId}</Bundle-Name>
  454. <Bundle-SymbolicName>${spring.osgi.symbolic.name}</Bundle-SymbolicName>
  455. <Bundle-Vendor>SpringSource</Bundle-Vendor>
  456. <Export-Package>${spring.osgi.export}</Export-Package>
  457. <Import-Package>${spring.osgi.import}</Import-Package>
  458. <Private-Package>${spring.osgi.private.pkg}</Private-Package>
  459. <!--Include-Resource>${spring.osgi.include.res}</Include-Resource-->
  460. <!-- jar entries -->
  461. <Implementation-Title>Spring Security</Implementation-Title>
  462. <Implementation-Version>${pom.version}</Implementation-Version>
  463. <Implementation-Vendor>SpringSource</Implementation-Vendor>
  464. <Implementation-Vendor-Id>org.springframework.security</Implementation-Vendor-Id>
  465. <!-- Spring specific entries -->
  466. <!--Spring-Version>${spring.maven.artifact.version}</Spring-Version-->
  467. </instructions>
  468. <excludeDependencies>true</excludeDependencies>
  469. </configuration>
  470. </plugin>
  471. </plugins>
  472. </build>
  473. <reporting>
  474. <plugins>
  475. <plugin>
  476. <groupId>org.apache.maven.plugins</groupId>
  477. <artifactId>maven-surefire-report-plugin</artifactId>
  478. <version>2.4.2</version>
  479. <!--
  480. <configuration>
  481. <aggregate>true</aggregate>
  482. </configuration>
  483. -->
  484. </plugin>
  485. <plugin>
  486. <groupId>org.apache.maven.plugins</groupId>
  487. <artifactId>maven-jxr-plugin</artifactId>
  488. <configuration>
  489. <aggregate>true</aggregate>
  490. <excludes>
  491. <exclude>bigbank/**</exclude>
  492. </excludes>
  493. </configuration>
  494. </plugin>
  495. <!--
  496. <plugin>
  497. <groupId>org.apache.maven.plugins</groupId>
  498. <artifactId>maven-checkstyle-plugin</artifactId>
  499. <configuration>
  500. <configLocation>
  501. acegi_checkstyle.xml
  502. </configLocation>
  503. </configuration>
  504. </plugin>
  505. -->
  506. <plugin>
  507. <groupId>org.codehaus.mojo</groupId>
  508. <artifactId>cobertura-maven-plugin</artifactId>
  509. <version>2.2</version>
  510. </plugin>
  511. <plugin>
  512. <groupId>org.apache.maven.plugins</groupId>
  513. <artifactId>maven-javadoc-plugin</artifactId>
  514. <version>2.4</version>
  515. <configuration>
  516. <aggregate>true</aggregate>
  517. <header>Spring Security Framework</header>
  518. <quiet>true</quiet>
  519. <excludePackageNames>sample,bigbank,zzz</excludePackageNames>
  520. <links>
  521. <link>
  522. http://java.sun.com/j2se/1.5.0/docs/api
  523. </link>
  524. <link>
  525. http://static.springframework.org/spring/docs/2.5.x/api/
  526. </link>
  527. <link>
  528. http://commons.apache.org/dbcp/apidocs/
  529. </link>
  530. <link>
  531. http://commons.apache.org/httpclient/apidocs/
  532. </link>
  533. <link>
  534. http://commons.apache.org/pool/apidocs/
  535. </link>
  536. <link>
  537. http://commons.apache.org/lang/api/
  538. </link>
  539. <link>
  540. http://commons.apache.org/codec/apidocs/
  541. </link>
  542. <link>
  543. http://commons.apache.org/collections/apidocs/
  544. </link>
  545. <link>
  546. http://velocity.apache.org/engine/releases/velocity-1.5/apidocs/
  547. </link>
  548. <link>
  549. http://developer.ja-sig.org/projects/cas/cas-server-core/cas-server/cas-server-core/apidocs/
  550. </link>
  551. <link>
  552. http://tomcat.apache.org/tomcat-5.5-doc/servletapi/
  553. </link>
  554. </links>
  555. </configuration>
  556. <reportSets>
  557. <reportSet>
  558. <reports>
  559. <report>javadoc</report>
  560. <!--<report>test-javadoc</report> -->
  561. </reports>
  562. </reportSet>
  563. </reportSets>
  564. </plugin>
  565. <plugin>
  566. <groupId>org.codehaus.mojo</groupId>
  567. <artifactId>taglist-maven-plugin</artifactId>
  568. </plugin>
  569. <plugin>
  570. <groupId>org.apache.maven.plugins</groupId>
  571. <artifactId>maven-project-info-reports-plugin</artifactId>
  572. <version>2.0.1</version>
  573. <!--
  574. <reportSets>
  575. <reportSet>
  576. <reports>
  577. <report>dependencies</report>
  578. <report>project-team</report>
  579. <report>mailing-list</report>
  580. <report>issue-tracking</report>
  581. <report>license</report>
  582. </reports>
  583. </reportSet>
  584. </reportSets>
  585. -->
  586. </plugin>
  587. </plugins>
  588. </reporting>
  589. <dependencyManagement>
  590. <dependencies>
  591. <dependency>
  592. <groupId>org.springframework</groupId>
  593. <artifactId>spring-core</artifactId>
  594. <version>${spring.version}</version>
  595. </dependency>
  596. <dependency>
  597. <groupId>org.springframework</groupId>
  598. <artifactId>spring-mock</artifactId>
  599. <version>${spring.version}</version>
  600. </dependency>
  601. <dependency>
  602. <groupId>org.springframework</groupId>
  603. <artifactId>spring-remoting</artifactId>
  604. <version>${spring.version}</version>
  605. </dependency>
  606. <dependency>
  607. <groupId>org.springframework</groupId>
  608. <artifactId>spring-web</artifactId>
  609. <version>${spring.version}</version>
  610. </dependency>
  611. <dependency>
  612. <groupId>org.springframework</groupId>
  613. <artifactId>spring-jdbc</artifactId>
  614. <version>${spring.version}</version>
  615. </dependency>
  616. <dependency>
  617. <groupId>org.springframework</groupId>
  618. <artifactId>spring-dao</artifactId>
  619. <version>${spring.version}</version>
  620. </dependency>
  621. <dependency>
  622. <groupId>org.springframework</groupId>
  623. <artifactId>spring-support</artifactId>
  624. <version>${spring.version}</version>
  625. </dependency>
  626. <dependency>
  627. <groupId>org.springframework</groupId>
  628. <artifactId>spring-aop</artifactId>
  629. <version>${spring.version}</version>
  630. </dependency>
  631. <dependency>
  632. <groupId>org.springframework</groupId>
  633. <artifactId>spring-context</artifactId>
  634. <version>${spring.version}</version>
  635. </dependency>
  636. <dependency>
  637. <groupId>org.springframework.ldap</groupId>
  638. <artifactId>spring-ldap</artifactId>
  639. <version>1.2.1</version>
  640. </dependency>
  641. <dependency>
  642. <groupId>org.aspectj</groupId>
  643. <artifactId>aspectjweaver</artifactId>
  644. <optional>true</optional>
  645. <version>1.5.4</version>
  646. </dependency>
  647. <dependency>
  648. <groupId>org.aspectj</groupId>
  649. <artifactId>aspectjrt</artifactId>
  650. <version>1.5.4</version>
  651. </dependency>
  652. <dependency>
  653. <groupId>org.springframework</groupId>
  654. <artifactId>spring-webmvc</artifactId>
  655. <version>${spring.version}</version>
  656. </dependency>
  657. <dependency>
  658. <groupId>cglib</groupId>
  659. <artifactId>cglib-nodep</artifactId>
  660. <scope>test</scope>
  661. <optional>true</optional>
  662. <version>2.1_3</version>
  663. </dependency>
  664. <dependency>
  665. <groupId>log4j</groupId>
  666. <artifactId>log4j</artifactId>
  667. <version>1.2.14</version> <!-- 1.2.15 has some JMX dependencies we don't want in its POM -->
  668. <optional>true</optional>
  669. <scope>runtime</scope>
  670. </dependency>
  671. <dependency>
  672. <groupId>net.sf.ehcache</groupId>
  673. <artifactId>ehcache</artifactId>
  674. <version>1.4.1</version>
  675. </dependency>
  676. <dependency>
  677. <groupId>commons-collections</groupId>
  678. <artifactId>commons-collections</artifactId>
  679. <version>3.2</version>
  680. </dependency>
  681. <dependency>
  682. <groupId>hsqldb</groupId>
  683. <artifactId>hsqldb</artifactId>
  684. <version>1.8.0.7</version>
  685. </dependency>
  686. <dependency>
  687. <groupId>commons-logging</groupId>
  688. <artifactId>commons-logging</artifactId>
  689. <version>1.1.1</version>
  690. </dependency>
  691. <dependency>
  692. <groupId>commons-codec</groupId>
  693. <artifactId>commons-codec</artifactId>
  694. <version>1.3</version>
  695. </dependency>
  696. <dependency>
  697. <groupId>javax.servlet</groupId>
  698. <artifactId>servlet-api</artifactId>
  699. <version>2.4</version>
  700. <scope>provided</scope>
  701. </dependency>
  702. <dependency>
  703. <groupId>javax.servlet</groupId>
  704. <artifactId>jstl</artifactId>
  705. <version>${jstl.version}</version>
  706. <scope>runtime</scope>
  707. </dependency>
  708. <dependency>
  709. <groupId>taglibs</groupId>
  710. <artifactId>standard</artifactId>
  711. <version>${jstl.version}</version>
  712. <scope>runtime</scope>
  713. </dependency>
  714. </dependencies>
  715. </dependencyManagement>
  716. <properties>
  717. <pom.version.osgi>2.0.2.SNAPSHOT</pom.version.osgi>
  718. <spring.version>2.0.8</spring.version>
  719. <spring.version.osgi>[2.0.8, 3.0.0)</spring.version.osgi>
  720. <jstl.version>1.1.2</jstl.version>
  721. <docbook.source>${basedir}/src/docbkx</docbook.source>
  722. <docbook.target>${basedir}/target/site/guide</docbook.target>
  723. </properties>
  724. </project>