pom.xml 23 KB

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