pom.xml 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652
  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-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>captcha</module>
  19. <module>acl</module>
  20. <module>taglibs</module>
  21. </modules>
  22. <description>Spring Security</description>
  23. <organization>
  24. <name>SpringSource, Inc</name>
  25. <url>http://sourceforge.net/projects/acegisecurity</url>
  26. <!--<logo>http://sourceforge.net/sflogo.php?group_id=104215&amp;type=5</logo>-->
  27. </organization>
  28. <inceptionYear>2004</inceptionYear>
  29. <!--<logo>http://acegisecurity.org/logo.gif</logo>-->
  30. <url>http://acegisecurity.org/</url>
  31. <licenses>
  32. <license>
  33. <name>The Apache Software License, Version 2.0</name>
  34. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  35. <distribution>repo</distribution>
  36. </license>
  37. </licenses>
  38. <!-- Note when doing releases: tagBase is set in release plugin configuration below -->
  39. <scm>
  40. <connection>scm:svn:https://acegisecurity.svn.sourceforge.net/svnroot/acegisecurity/spring-security/trunk</connection>
  41. <developerConnection>scm:svn:https://acegisecurity.svn.sourceforge.net/svnroot/acegisecurity/spring-security/trunk</developerConnection>
  42. <url>http://acegisecurity.svn.sourceforge.net/viewcvs.cgi/acegisecurity/spring-security/trunk/</url>
  43. </scm>
  44. <issueManagement>
  45. <system>jira</system>
  46. <url>http://jira.springframework.org/browse/SEC</url>
  47. </issueManagement>
  48. <ciManagement>
  49. <system>bamboo</system>
  50. <url>http://build.springframework.org:8085/bamboo/</url>
  51. </ciManagement>
  52. <distributionManagement>
  53. <repository>
  54. <id>spring-milestone</id>
  55. <name>Spring Milestone Repository</name>
  56. <url>s3://maven.springframework.org/milestone</url>
  57. </repository>
  58. <snapshotRepository>
  59. <id>spring-snapshot</id>
  60. <name>Spring Snapshot Repository</name>
  61. <url>s3://maven.springframework.org/snapshot</url>
  62. </snapshotRepository>
  63. <site>
  64. <id>local</id>
  65. <name>Local Site Directory</name>
  66. <!--
  67. This variable is set by the build release script. You can also set it on the command line if
  68. you are running maven directly. e.g. mvn site -DsiteDirectory=file:///home/joe/mysite
  69. -->
  70. <url>${siteDirectory}</url>
  71. </site>
  72. </distributionManagement>
  73. <repositories>
  74. <repository>
  75. <id>spring-release</id>
  76. <name>Spring Portfolio Release Repository</name>
  77. <url>http://s3.amazonaws.com/maven.springframework.org/release</url>
  78. </repository>
  79. <repository>
  80. <id>spring-external</id>
  81. <name>Spring Portfolio Release Repository</name>
  82. <url>http://s3.amazonaws.com/maven.springframework.org/external</url>
  83. </repository>
  84. </repositories>
  85. <pluginRepositories>
  86. <pluginRepository>
  87. <id>Codehaus Snapshots</id>
  88. <url>http://snapshots.repository.codehaus.org/</url>
  89. </pluginRepository>
  90. </pluginRepositories>
  91. <mailingLists>
  92. <mailingList>
  93. <name>Acegi Developer List</name>
  94. <subscribe>
  95. https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer
  96. </subscribe>
  97. <!--
  98. <unsubscribe>https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer</unsubscribe>
  99. <post>acegisecurity-developer@lists.sourceforge.net</post>
  100. -->
  101. <archive>
  102. http://sourceforge.net/mailarchive/forum.php?forum_id=40659
  103. </archive>
  104. <otherArchives>
  105. <otherArchive>
  106. http://news.gmane.org/gmane.comp.java.springframework.acegisecurity.devel/
  107. </otherArchive>
  108. <otherArchive>
  109. http://www.mail-archive.com/acegisecurity-developer@lists.sourceforge.net/
  110. </otherArchive>
  111. </otherArchives>
  112. </mailingList>
  113. </mailingLists>
  114. <developers>
  115. <developer>
  116. <name>Ben Alex</name>
  117. <id>benalex</id>
  118. <email>benalex at users.sourceforge.net</email>
  119. <organization>
  120. SpringSource
  121. </organization>
  122. <timezone>+10</timezone>
  123. </developer>
  124. <developer>
  125. <name>Colin Sampaleanu</name>
  126. <id>colins</id>
  127. <email>colinml1 at exis.com</email>
  128. </developer>
  129. <developer>
  130. <name>Carlos Sanchez</name>
  131. <id>carlossg</id>
  132. <email>carlossg at users.sourceforge.net</email>
  133. <timezone>+1</timezone>
  134. </developer>
  135. <developer>
  136. <name>Luke Taylor</name>
  137. <id>luke_t</id>
  138. <email>luke_t at users.sourceforge.net</email>
  139. <organization>
  140. SpringSource
  141. </organization>
  142. <timezone>0</timezone>
  143. </developer>
  144. <developer>
  145. <name>Ray Krueger</name>
  146. <id>raykrueger</id>
  147. <email>raykrueger at users.sourceforge.net</email>
  148. </developer>
  149. <developer>
  150. <name>Robert Sanders</name>
  151. <id>robertsanders</id>
  152. <email>robertsanders at users.sourceforge.net</email>
  153. </developer>
  154. <developer>
  155. <name>Mark St.Godard</name>
  156. <id>markstg</id>
  157. <email>markstg at users.sourceforge.net</email>
  158. </developer>
  159. <developer>
  160. <name>John A. Lewis</name>
  161. <id>johnalewis</id>
  162. <email>johnalewis at users.sourceforge.net</email>
  163. </developer>
  164. </developers>
  165. <contributors>
  166. <contributor>
  167. <name>Alan Stewart</name>
  168. </contributor>
  169. <contributor>
  170. <name>Cameron Braid</name>
  171. </contributor>
  172. <contributor>
  173. <name>Patrick Burleson</name>
  174. </contributor>
  175. <contributor>
  176. <name>Francois Beausoleil</name>
  177. </contributor>
  178. <contributor>
  179. <name>Wesley Hall</name>
  180. </contributor>
  181. <contributor>
  182. <name>Scott Evans</name>
  183. </contributor>
  184. <contributor>
  185. <name>Travis Gregg</name>
  186. </contributor>
  187. <contributor>
  188. <name>Karel Miarka</name>
  189. </contributor>
  190. <contributor>
  191. <name>James Monaghan</name>
  192. </contributor>
  193. <contributor>
  194. <name>Andrew Petro</name>
  195. </contributor>
  196. <contributor>
  197. <name>Aaron Tang</name>
  198. </contributor>
  199. <contributor>
  200. <name>Orlando Garcia Carmona</name>
  201. </contributor>
  202. <contributor>
  203. <name>Joni Suominen</name>
  204. </contributor>
  205. <contributor>
  206. <name>Sergio Berna</name>
  207. </contributor>
  208. <contributor>
  209. <name>Paulo Neves</name>
  210. </contributor>
  211. <contributor>
  212. <name>Mike Perham</name>
  213. </contributor>
  214. <contributor>
  215. <name>Robin Bramley</name>
  216. </contributor>
  217. <contributor>
  218. <name>Robert Sanders</name>
  219. </contributor>
  220. <contributor>
  221. <name>Vishal Puri</name>
  222. </contributor>
  223. <contributor>
  224. <name>Martin Algesten</name>
  225. </contributor>
  226. </contributors>
  227. <dependencies>
  228. <dependency>
  229. <groupId>junit</groupId>
  230. <artifactId>junit</artifactId>
  231. <version>4.4</version>
  232. <scope>test</scope>
  233. </dependency>
  234. </dependencies>
  235. <build>
  236. <extensions>
  237. <extension>
  238. <groupId>org.springframework.aws</groupId>
  239. <artifactId>spring-aws-maven</artifactId>
  240. <version>1.2.2</version>
  241. </extension>
  242. </extensions>
  243. <plugins>
  244. <plugin>
  245. <groupId>org.apache.maven.plugins</groupId>
  246. <artifactId>maven-help-plugin</artifactId>
  247. <version>2.0.1</version>
  248. </plugin>
  249. <plugin>
  250. <groupId>org.apache.maven.plugins</groupId>
  251. <artifactId>maven-clean-plugin</artifactId>
  252. <version>2.1.1</version>
  253. </plugin>
  254. <plugin>
  255. <groupId>org.apache.maven.plugins</groupId>
  256. <artifactId>maven-resources-plugin</artifactId>
  257. <version>2.2</version>
  258. </plugin>
  259. <plugin>
  260. <groupId>org.apache.maven.plugins</groupId>
  261. <artifactId>maven-surefire-plugin</artifactId>
  262. <version>2.3.1</version>
  263. <configuration>
  264. <includes>
  265. <include>**/*Tests.class</include>
  266. </includes>
  267. <excludes>
  268. <exclude>**/Abstract*</exclude>
  269. </excludes>
  270. <forkMode>once</forkMode>
  271. <systemProperties>
  272. <!-- The working directory for the embedded apache Ldap test server -->
  273. <property>
  274. <name>apacheDSWorkDir</name>
  275. <value>
  276. ${basedir}/target/apacheds-work
  277. </value>
  278. </property>
  279. </systemProperties>
  280. </configuration>
  281. </plugin>
  282. <plugin>
  283. <groupId>org.apache.maven.plugins</groupId>
  284. <artifactId>maven-compiler-plugin</artifactId>
  285. <version>2.0.2</version>
  286. <executions>
  287. <execution>
  288. <id>java-1.4-compile</id>
  289. <phase>compile</phase>
  290. <goals>
  291. <goal>compile</goal>
  292. </goals>
  293. <configuration>
  294. <source>1.4</source>
  295. <target>1.4</target>
  296. </configuration>
  297. </execution>
  298. <execution>
  299. <id>java-1.5-compile</id>
  300. <phase>process-test-sources</phase>
  301. <goals>
  302. <goal>testCompile</goal>
  303. </goals>
  304. <configuration>
  305. <source>1.5</source>
  306. <target>1.5</target>
  307. </configuration>
  308. </execution>
  309. </executions>
  310. </plugin>
  311. <plugin>
  312. <groupId>org.apache.maven.plugins</groupId>
  313. <artifactId>maven-jar-plugin</artifactId>
  314. <version>2.1</version>
  315. <executions>
  316. <execution>
  317. <goals>
  318. <goal>test-jar</goal>
  319. </goals>
  320. <phase>package</phase>
  321. </execution>
  322. </executions>
  323. </plugin>
  324. <plugin>
  325. <groupId>org.apache.maven.plugins</groupId>
  326. <artifactId>maven-source-plugin</artifactId>
  327. <version>2.0.3</version>
  328. <configuration>
  329. <attach>true</attach>
  330. </configuration>
  331. <executions>
  332. <execution>
  333. <goals>
  334. <goal>jar</goal>
  335. </goals>
  336. </execution>
  337. </executions>
  338. </plugin>
  339. <!-- Other -->
  340. <plugin>
  341. <groupId>org.apache.maven.plugins</groupId>
  342. <artifactId>maven-war-plugin</artifactId>
  343. <version>2.0.2</version>
  344. </plugin>
  345. <plugin>
  346. <groupId>org.apache.maven.plugins</groupId>
  347. <artifactId>maven-assembly-plugin</artifactId>
  348. <version>2.1</version>
  349. </plugin>
  350. <plugin>
  351. <groupId>org.apache.maven.plugins</groupId>
  352. <artifactId>maven-install-plugin</artifactId>
  353. <version>2.2</version>
  354. </plugin>
  355. <plugin>
  356. <groupId>org.apache.maven.plugins</groupId>
  357. <artifactId>maven-deploy-plugin</artifactId>
  358. <version>2.3</version>
  359. </plugin>
  360. <plugin>
  361. <groupId>org.apache.maven.plugins</groupId>
  362. <artifactId>maven-release-plugin</artifactId>
  363. <version>2.0-beta-7</version>
  364. <configuration>
  365. <tagBase>
  366. https://acegisecurity.svn.sourceforge.net/svnroot/acegisecurity/spring-security/tags
  367. </tagBase>
  368. </configuration>
  369. </plugin>
  370. <!-- IDE -->
  371. <plugin>
  372. <groupId>org.apache.maven.plugins</groupId>
  373. <artifactId>maven-eclipse-plugin</artifactId>
  374. <version>2.3</version>
  375. <configuration>
  376. <downloadSources>true</downloadSources>
  377. <wtpversion>1.0</wtpversion>
  378. </configuration>
  379. </plugin>
  380. <plugin>
  381. <groupId>org.apache.maven.plugins</groupId>
  382. <artifactId>maven-idea-plugin</artifactId>
  383. <version>2.0</version>
  384. <configuration>
  385. <downloadSources>true</downloadSources>
  386. <!--<downloadJavadocs>true</downloadJavadocs>-->
  387. <dependenciesAsLibraries>
  388. true
  389. </dependenciesAsLibraries>
  390. </configuration>
  391. </plugin>
  392. <!-- Site -->
  393. <plugin>
  394. <groupId>org.apache.maven.plugins</groupId>
  395. <artifactId>maven-site-plugin</artifactId>
  396. <version>2.0-beta-6</version>
  397. </plugin>
  398. <plugin>
  399. <groupId>com.agilejava.docbkx</groupId>
  400. <artifactId>docbkx-maven-plugin</artifactId>
  401. <version>2.0.6</version>
  402. <executions>
  403. <execution>
  404. <id>build-singlehtml-doc</id>
  405. <phase>pre-site</phase>
  406. <goals>
  407. <goal>generate-html</goal>
  408. </goals>
  409. <configuration>
  410. <sourceDirectory>${docbook.source}</sourceDirectory>
  411. <targetDirectory>${docbook.target}</targetDirectory>
  412. <inputs>springsecurity.xml</inputs>
  413. <chunkedOutput>false</chunkedOutput>
  414. <!--
  415. <htmlStylesheet>css/spring-security-docbook.css</htmlStylesheet>
  416. <htmlCustomization>
  417. ${docbook.source}/resources/xsl/spring-security-docbook-html.xsl
  418. </htmlCustomization>
  419. -->
  420. <postProcess>
  421. <copy todir="${docbook.target}/images">
  422. <fileset dir="${docbook.source}/images">
  423. <include name="*.png" />
  424. <include name="*.gif" />
  425. <include name="*.jpg" />
  426. </fileset>
  427. </copy>
  428. </postProcess>
  429. </configuration>
  430. </execution>
  431. <execution>
  432. <id>build-pdf-doc</id>
  433. <phase>pre-site</phase>
  434. <goals>
  435. <goal>generate-pdf</goal>
  436. </goals>
  437. <configuration>
  438. <sourceDirectory>${docbook.source}</sourceDirectory>
  439. <targetDirectory>${docbook.target}</targetDirectory>
  440. <inputs>springsecurity.xml</inputs>
  441. <imgSrcPath>${docbook.source}/</imgSrcPath>
  442. <admonGraphicsPath>${docbook.source}/resources/images/admons/</admonGraphicsPath>
  443. <foCustomization>${docbook.source}/resources/xsl/spring-security-docbook-fopdf.xsl
  444. </foCustomization>
  445. </configuration>
  446. </execution>
  447. </executions>
  448. <dependencies>
  449. <dependency>
  450. <groupId>org.docbook</groupId>
  451. <artifactId>docbook-xml</artifactId>
  452. <version>4.4</version>
  453. <scope>runtime</scope>
  454. </dependency>
  455. </dependencies>
  456. </plugin>
  457. </plugins>
  458. </build>
  459. <reporting>
  460. <plugins>
  461. <plugin>
  462. <groupId>org.apache.maven.plugins</groupId>
  463. <artifactId>maven-surefire-report-plugin</artifactId>
  464. <version>2.3.1</version>
  465. <configuration>
  466. <aggregate>true</aggregate>
  467. </configuration>
  468. </plugin>
  469. <plugin>
  470. <groupId>org.apache.maven.plugins</groupId>
  471. <artifactId>maven-jxr-plugin</artifactId>
  472. <configuration>
  473. <aggregate>true</aggregate>
  474. </configuration>
  475. </plugin>
  476. <!--
  477. <plugin>
  478. <groupId>org.apache.maven.plugins</groupId>
  479. <artifactId>maven-checkstyle-plugin</artifactId>
  480. <configuration>
  481. <configLocation>
  482. acegi_checkstyle.xml
  483. </configLocation>
  484. </configuration>
  485. </plugin>
  486. -->
  487. <plugin>
  488. <groupId>org.codehaus.mojo</groupId>
  489. <artifactId>cobertura-maven-plugin</artifactId>
  490. <version>2.2</version>
  491. </plugin>
  492. <plugin>
  493. <groupId>org.apache.maven.plugins</groupId>
  494. <artifactId>maven-javadoc-plugin</artifactId>
  495. <version>2.3</version>
  496. <configuration>
  497. <aggregate>true</aggregate>
  498. <header>Spring Security Framework</header>
  499. <quiet>true</quiet>
  500. <excludePackageNames>sample,bigbank</excludePackageNames>
  501. <links>
  502. <link>
  503. http://java.sun.com/j2se/1.5.0/docs/api
  504. </link>
  505. <link>
  506. http://www.springframework.org/docs/api/
  507. </link>
  508. <link>
  509. http://commons.apache.org/dbcp/apidocs/
  510. </link>
  511. <link>
  512. http://commons.apache.org/httpclient/apidocs/
  513. </link>
  514. <link>
  515. http://commons.apache.org/pool/apidocs/
  516. </link>
  517. <link>
  518. http://commons.apache.org/lang/api/
  519. </link>
  520. <link>
  521. http://commons.apache.org/codec/apidocs/
  522. </link>
  523. <link>
  524. http://commons.apache.org/collections/apidocs/
  525. </link>
  526. <link>
  527. http://velocity.apache.org/engine/releases/velocity-1.5/apidocs/
  528. </link>
  529. <link>
  530. http://developer.ja-sig.org/projects/cas/cas-server-core/cas-server/cas-server-core/apidocs/
  531. </link>
  532. <link>
  533. http://tomcat.apache.org/tomcat-5.0-doc/servletapi/
  534. </link>
  535. </links>
  536. </configuration>
  537. <reportSets>
  538. <reportSet>
  539. <reports>
  540. <report>javadoc</report>
  541. <!-- <report>test-javadoc</report> -->
  542. </reports>
  543. </reportSet>
  544. </reportSets>
  545. </plugin>
  546. <plugin>
  547. <groupId>org.codehaus.mojo</groupId>
  548. <artifactId>taglist-maven-plugin</artifactId>
  549. </plugin>
  550. <plugin>
  551. <groupId>org.apache.maven.plugins</groupId>
  552. <artifactId>maven-project-info-reports-plugin</artifactId>
  553. <version>2.0.1</version>
  554. <!--
  555. <reportSets>
  556. <reportSet>
  557. <reports>
  558. <report>dependencies</report>
  559. <report>project-team</report>
  560. <report>mailing-list</report>
  561. <report>issue-tracking</report>
  562. <report>license</report>
  563. </reports>
  564. </reportSet>
  565. </reportSets>
  566. -->
  567. </plugin>
  568. </plugins>
  569. </reporting>
  570. <dependencyManagement>
  571. <dependencies>
  572. <dependency>
  573. <groupId>org.springframework</groupId>
  574. <artifactId>spring-core</artifactId>
  575. <version>${spring.version}</version>
  576. </dependency>
  577. <dependency>
  578. <groupId>org.springframework</groupId>
  579. <artifactId>spring-mock</artifactId>
  580. <version>${spring.version}</version>
  581. </dependency>
  582. <dependency>
  583. <groupId>org.springframework</groupId>
  584. <artifactId>spring-remoting</artifactId>
  585. <version>${spring.version}</version>
  586. </dependency>
  587. <dependency>
  588. <groupId>org.springframework</groupId>
  589. <artifactId>spring-web</artifactId>
  590. <version>${spring.version}</version>
  591. </dependency>
  592. <dependency>
  593. <groupId>org.springframework</groupId>
  594. <artifactId>spring-jdbc</artifactId>
  595. <version>${spring.version}</version>
  596. </dependency>
  597. <dependency>
  598. <groupId>org.springframework</groupId>
  599. <artifactId>spring-dao</artifactId>
  600. <version>${spring.version}</version>
  601. </dependency>
  602. <dependency>
  603. <groupId>org.springframework</groupId>
  604. <artifactId>spring-support</artifactId>
  605. <version>${spring.version}</version>
  606. </dependency>
  607. <dependency>
  608. <groupId>org.springframework</groupId>
  609. <artifactId>spring-aop</artifactId>
  610. <version>${spring.version}</version>
  611. </dependency>
  612. <dependency>
  613. <groupId>org.springframework</groupId>
  614. <artifactId>spring-context</artifactId>
  615. <version>${spring.version}</version>
  616. </dependency>
  617. <dependency>
  618. <groupId>log4j</groupId>
  619. <artifactId>log4j</artifactId>
  620. <version>1.2.13</version>
  621. <optional>true</optional>
  622. <scope>runtime</scope>
  623. </dependency>
  624. </dependencies>
  625. </dependencyManagement>
  626. <properties>
  627. <spring.version>2.0.6</spring.version>
  628. <felix.version>1.4.0</felix.version>
  629. <docbook.source>${basedir}/src/docbkx</docbook.source>
  630. <docbook.target>${basedir}/target/site/guide</docbook.target>
  631. </properties>
  632. </project>