pom.xml 24 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>3.1.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/trunk</connection>
  39. <developerConnection>scm:svn:https://src.springframework.org/svn/spring-security/trunk</developerConnection>
  40. <url>https://src.springframework.org/svn/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. <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. <repository>
  91. <releases>
  92. <enabled>true</enabled>
  93. </releases>
  94. <snapshots>
  95. <enabled>false</enabled>
  96. </snapshots>
  97. <id>com.springsource.repository.maven.releases</id>
  98. <name>Spring Framework Maven General Releases (Maven Central Format)</name>
  99. <url>http://maven.springframework.org/release</url>
  100. </repository>
  101. </repositories>
  102. <pluginRepositories>
  103. <pluginRepository>
  104. <id>com.springsource.repository.maven.milestone</id>
  105. <name>SpringSource Enterprise Bundle Repository - SpringSource Milestone Releases</name>
  106. <url>http://repository.springsource.com/maven/bundles/milestone</url>
  107. </pluginRepository>
  108. </pluginRepositories>
  109. <mailingLists>
  110. <mailingList>
  111. <name>Acegi Developer List</name>
  112. <subscribe>
  113. https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer
  114. </subscribe>
  115. <!--
  116. <unsubscribe>https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer</unsubscribe>
  117. <post>acegisecurity-developer@lists.sourceforge.net</post>
  118. -->
  119. <archive>
  120. http://sourceforge.net/mailarchive/forum.php?forum_id=40659
  121. </archive>
  122. <otherArchives>
  123. <otherArchive>
  124. http://news.gmane.org/gmane.comp.java.springframework.acegisecurity.devel/
  125. </otherArchive>
  126. <otherArchive>
  127. http://www.mail-archive.com/acegisecurity-developer@lists.sourceforge.net/
  128. </otherArchive>
  129. </otherArchives>
  130. </mailingList>
  131. </mailingLists>
  132. <developers>
  133. <developer>
  134. <name>Ben Alex</name>
  135. <id>benalex</id>
  136. <email>benalex at users.sourceforge.net</email>
  137. <organization>
  138. SpringSource
  139. </organization>
  140. <timezone>+10</timezone>
  141. </developer>
  142. <developer>
  143. <name>Colin Sampaleanu</name>
  144. <id>colins</id>
  145. <email>colinml1 at exis.com</email>
  146. </developer>
  147. <developer>
  148. <name>Carlos Sanchez</name>
  149. <id>carlossg</id>
  150. <email>carlossg at users.sourceforge.net</email>
  151. <timezone>+1</timezone>
  152. </developer>
  153. <developer>
  154. <name>Luke Taylor</name>
  155. <id>luke_t</id>
  156. <email>luke_t at users.sourceforge.net</email>
  157. <organization>
  158. SpringSource
  159. </organization>
  160. <timezone>0</timezone>
  161. </developer>
  162. <developer>
  163. <name>Ray Krueger</name>
  164. <id>raykrueger</id>
  165. <email>raykrueger at users.sourceforge.net</email>
  166. </developer>
  167. <developer>
  168. <name>Mark St.Godard</name>
  169. <id>markstg</id>
  170. <email>markstg at users.sourceforge.net</email>
  171. </developer>
  172. <developer>
  173. <name>John A. Lewis</name>
  174. <id>johnalewis</id>
  175. <email>johnalewis at users.sourceforge.net</email>
  176. </developer>
  177. </developers>
  178. <contributors>
  179. <contributor>
  180. <name>Alan Stewart</name>
  181. </contributor>
  182. <contributor>
  183. <name>Cameron Braid</name>
  184. </contributor>
  185. <contributor>
  186. <name>Patrick Burleson</name>
  187. </contributor>
  188. <contributor>
  189. <name>Francois Beausoleil</name>
  190. </contributor>
  191. <contributor>
  192. <name>Wesley Hall</name>
  193. </contributor>
  194. <contributor>
  195. <name>Scott Evans</name>
  196. </contributor>
  197. <contributor>
  198. <name>Travis Gregg</name>
  199. </contributor>
  200. <contributor>
  201. <name>Karel Miarka</name>
  202. </contributor>
  203. <contributor>
  204. <name>James Monaghan</name>
  205. </contributor>
  206. <contributor>
  207. <name>Andrew Petro</name>
  208. </contributor>
  209. <contributor>
  210. <name>Aaron Tang</name>
  211. </contributor>
  212. <contributor>
  213. <name>Orlando Garcia Carmona</name>
  214. </contributor>
  215. <contributor>
  216. <name>Joni Suominen</name>
  217. </contributor>
  218. <contributor>
  219. <name>Sergio Berna</name>
  220. </contributor>
  221. <contributor>
  222. <name>Paulo Neves</name>
  223. </contributor>
  224. <contributor>
  225. <name>Mike Perham</name>
  226. </contributor>
  227. <contributor>
  228. <name>Robin Bramley</name>
  229. </contributor>
  230. <contributor>
  231. <name>Robert Sanders</name>
  232. </contributor>
  233. <contributor>
  234. <name>Vishal Puri</name>
  235. </contributor>
  236. <contributor>
  237. <name>Martin Algesten</name>
  238. </contributor>
  239. <contributor>
  240. <name>Ruud Senden</name>
  241. </contributor>
  242. <contributor>
  243. <name>Michael Mayr</name>
  244. </contributor>
  245. </contributors>
  246. <dependencies>
  247. <dependency>
  248. <groupId>junit</groupId>
  249. <artifactId>junit</artifactId>
  250. <version>4.6</version>
  251. <scope>test</scope>
  252. </dependency>
  253. <dependency>
  254. <groupId>org.mockito</groupId>
  255. <artifactId>mockito-core</artifactId>
  256. <version>1.8.0</version>
  257. <scope>test</scope>
  258. </dependency>
  259. <dependency>
  260. <groupId>org.jmock</groupId>
  261. <artifactId>jmock-junit4</artifactId>
  262. <version>2.5.1</version>
  263. <scope>test</scope>
  264. </dependency>
  265. </dependencies>
  266. <build>
  267. <extensions>
  268. <extension>
  269. <groupId>org.springframework.build.aws</groupId>
  270. <artifactId>org.springframework.build.aws.maven</artifactId>
  271. <version>3.0.0.RELEASE</version>
  272. </extension>
  273. </extensions>
  274. <pluginManagement>
  275. <plugins>
  276. <plugin>
  277. <groupId>com.springsource.bundlor</groupId>
  278. <artifactId>com.springsource.bundlor.maven</artifactId>
  279. <version>1.0.0.M6</version>
  280. <executions>
  281. <execution>
  282. <id>bundlor</id>
  283. <phase>package</phase>
  284. <goals>
  285. <goal>transform</goal>
  286. </goals>
  287. </execution>
  288. </executions>
  289. </plugin>
  290. </plugins>
  291. </pluginManagement>
  292. <plugins>
  293. <plugin>
  294. <groupId>org.apache.maven.plugins</groupId>
  295. <artifactId>maven-resources-plugin</artifactId>
  296. <version>2.3</version>
  297. <configuration>
  298. <encoding>UTF-8</encoding>
  299. </configuration>
  300. </plugin>
  301. <plugin>
  302. <groupId>org.apache.maven.plugins</groupId>
  303. <artifactId>maven-surefire-plugin</artifactId>
  304. <version>2.4.2</version>
  305. <configuration>
  306. <includes>
  307. <include>**/*Tests.class</include>
  308. </includes>
  309. <excludes>
  310. <exclude>**/Abstract*</exclude>
  311. </excludes>
  312. <forkMode>once</forkMode>
  313. <systemProperties>
  314. <!-- The working directory for the embedded apache Ldap test server -->
  315. <property>
  316. <name>apacheDSWorkDir</name>
  317. <value>
  318. ${basedir}/target/apacheds-work
  319. </value>
  320. </property>
  321. </systemProperties>
  322. </configuration>
  323. </plugin>
  324. <plugin>
  325. <groupId>org.apache.maven.plugins</groupId>
  326. <artifactId>maven-compiler-plugin</artifactId>
  327. <version>2.0.2</version>
  328. <configuration>
  329. <source>1.5</source>
  330. <target>1.5</target>
  331. <fork>true</fork>
  332. </configuration>
  333. </plugin>
  334. <plugin>
  335. <groupId>org.apache.maven.plugins</groupId>
  336. <artifactId>maven-jar-plugin</artifactId>
  337. <version>2.1</version>
  338. <executions>
  339. <execution>
  340. <goals>
  341. <goal>test-jar</goal>
  342. </goals>
  343. <phase>package</phase>
  344. </execution>
  345. </executions>
  346. </plugin>
  347. <plugin>
  348. <groupId>org.apache.maven.plugins</groupId>
  349. <artifactId>maven-source-plugin</artifactId>
  350. <version>2.0.3</version>
  351. <configuration>
  352. <attach>true</attach>
  353. </configuration>
  354. <executions>
  355. <execution>
  356. <id>attach-sources</id>
  357. <phase>verify</phase>
  358. <goals>
  359. <goal>jar</goal>
  360. </goals>
  361. </execution>
  362. </executions>
  363. </plugin>
  364. <!-- Other -->
  365. <plugin>
  366. <groupId>org.apache.maven.plugins</groupId>
  367. <artifactId>maven-war-plugin</artifactId>
  368. <version>2.0.2</version>
  369. </plugin>
  370. <plugin>
  371. <groupId>org.apache.maven.plugins</groupId>
  372. <artifactId>maven-assembly-plugin</artifactId>
  373. <version>2.1</version>
  374. </plugin>
  375. <plugin>
  376. <groupId>org.apache.maven.plugins</groupId>
  377. <artifactId>maven-install-plugin</artifactId>
  378. <version>2.2</version>
  379. </plugin>
  380. <plugin>
  381. <groupId>org.apache.maven.plugins</groupId>
  382. <artifactId>maven-deploy-plugin</artifactId>
  383. <version>2.3</version>
  384. </plugin>
  385. <plugin>
  386. <groupId>org.apache.maven.plugins</groupId>
  387. <artifactId>maven-release-plugin</artifactId>
  388. <version>2.0-beta-9</version>
  389. <configuration>
  390. <tagBase>
  391. https://src.springframework.org/svn/spring-security/tags
  392. </tagBase>
  393. </configuration>
  394. </plugin>
  395. <!-- IDE -->
  396. <plugin>
  397. <groupId>org.apache.maven.plugins</groupId>
  398. <artifactId>maven-eclipse-plugin</artifactId>
  399. <version>2.5.1</version>
  400. <configuration>
  401. <downloadSources>true</downloadSources>
  402. <wtpversion>2.0</wtpversion>
  403. </configuration>
  404. </plugin>
  405. <plugin>
  406. <groupId>org.apache.maven.plugins</groupId>
  407. <artifactId>maven-idea-plugin</artifactId>
  408. <version>2.0</version>
  409. <configuration>
  410. <downloadSources>true</downloadSources>
  411. <!--<downloadJavadocs>true</downloadJavadocs>-->
  412. <dependenciesAsLibraries>
  413. true
  414. </dependenciesAsLibraries>
  415. </configuration>
  416. </plugin>
  417. </plugins>
  418. </build>
  419. <reporting>
  420. <plugins>
  421. <plugin>
  422. <groupId>org.apache.maven.plugins</groupId>
  423. <artifactId>maven-surefire-report-plugin</artifactId>
  424. <version>2.4.2</version>
  425. </plugin>
  426. <plugin>
  427. <groupId>org.apache.maven.plugins</groupId>
  428. <artifactId>maven-jxr-plugin</artifactId>
  429. <configuration>
  430. <aggregate>true</aggregate>
  431. <excludes>
  432. <exclude>bigbank/**</exclude>
  433. </excludes>
  434. </configuration>
  435. </plugin>
  436. <plugin>
  437. <groupId>org.codehaus.mojo</groupId>
  438. <artifactId>cobertura-maven-plugin</artifactId>
  439. <version>2.2</version>
  440. </plugin>
  441. <plugin>
  442. <groupId>org.apache.maven.plugins</groupId>
  443. <artifactId>maven-javadoc-plugin</artifactId>
  444. <version>2.5</version>
  445. <configuration>
  446. <excludePackageNames>sample:bigbank:zzz</excludePackageNames>
  447. <breakiterator>true</breakiterator>
  448. <aggregate>true</aggregate>
  449. <links>
  450. <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
  451. <link>http://static.springframework.org/spring/docs/3.0.x/javadoc-api/</link>
  452. <link>http://commons.apache.org/httpclient/apidocs/</link>
  453. <link>http://developer.ja-sig.org/projects/cas/cas-server-core/cas-server/cas-server-core/apidocs/</link>
  454. <link>http://tomcat.apache.org/tomcat-5.5-doc/servletapi/</link>
  455. </links>
  456. </configuration>
  457. <reportSets>
  458. <reportSet>
  459. <reports>
  460. <report>javadoc</report>
  461. </reports>
  462. </reportSet>
  463. </reportSets>
  464. </plugin>
  465. <plugin>
  466. <groupId>org.codehaus.mojo</groupId>
  467. <artifactId>taglist-maven-plugin</artifactId>
  468. </plugin>
  469. </plugins>
  470. </reporting>
  471. <dependencyManagement>
  472. <dependencies>
  473. <dependency>
  474. <groupId>org.springframework</groupId>
  475. <artifactId>spring-core</artifactId>
  476. <version>${spring.version}</version>
  477. <exclusions>
  478. <exclusion>
  479. <groupId>commons-logging</groupId>
  480. <artifactId>commons-logging</artifactId>
  481. </exclusion>
  482. </exclusions>
  483. </dependency>
  484. <dependency>
  485. <groupId>org.springframework</groupId>
  486. <artifactId>spring-expression</artifactId>
  487. <version>${spring.version}</version>
  488. <optional>true</optional>
  489. </dependency>
  490. <dependency>
  491. <groupId>org.springframework</groupId>
  492. <artifactId>spring-test</artifactId>
  493. <version>${spring.version}</version>
  494. </dependency>
  495. <dependency>
  496. <groupId>org.springframework</groupId>
  497. <artifactId>spring-jdbc</artifactId>
  498. <version>${spring.version}</version>
  499. </dependency>
  500. <dependency>
  501. <groupId>org.springframework</groupId>
  502. <artifactId>spring-tx</artifactId>
  503. <version>${spring.version}</version>
  504. </dependency>
  505. <dependency>
  506. <groupId>org.springframework</groupId>
  507. <artifactId>spring-aop</artifactId>
  508. <version>${spring.version}</version>
  509. </dependency>
  510. <dependency>
  511. <groupId>org.springframework</groupId>
  512. <artifactId>spring-context</artifactId>
  513. <version>${spring.version}</version>
  514. </dependency>
  515. <dependency>
  516. <groupId>org.springframework</groupId>
  517. <artifactId>spring-context-support</artifactId>
  518. <version>${spring.version}</version>
  519. </dependency>
  520. <dependency>
  521. <groupId>org.springframework</groupId>
  522. <artifactId>spring-web</artifactId>
  523. <version>${spring.version}</version>
  524. </dependency>
  525. <dependency>
  526. <groupId>org.springframework</groupId>
  527. <artifactId>spring-webmvc</artifactId>
  528. <version>${spring.version}</version>
  529. </dependency>
  530. <dependency>
  531. <groupId>org.springframework.ldap</groupId>
  532. <artifactId>spring-ldap-core</artifactId>
  533. <version>1.3.0.RELEASE</version>
  534. <exclusions>
  535. <exclusion>
  536. <groupId>org.springframework</groupId>
  537. <artifactId>spring-core</artifactId>
  538. </exclusion>
  539. <exclusion>
  540. <groupId>org.springframework</groupId>
  541. <artifactId>spring-tx</artifactId>
  542. </exclusion>
  543. <exclusion>
  544. <groupId>org.springframework</groupId>
  545. <artifactId>spring-beans</artifactId>
  546. </exclusion>
  547. <exclusion>
  548. <groupId>commons-logging</groupId>
  549. <artifactId>commons-logging</artifactId>
  550. </exclusion>
  551. </exclusions>
  552. </dependency>
  553. <dependency>
  554. <groupId>org.aspectj</groupId>
  555. <artifactId>aspectjrt</artifactId>
  556. <version>1.6.8</version>
  557. </dependency>
  558. <dependency>
  559. <groupId>org.aspectj</groupId>
  560. <artifactId>aspectjweaver</artifactId>
  561. <version>1.6.8</version>
  562. </dependency>
  563. <dependency>
  564. <groupId>cglib</groupId>
  565. <artifactId>cglib-nodep</artifactId>
  566. <scope>test</scope>
  567. <optional>true</optional>
  568. <version>2.2</version>
  569. </dependency>
  570. <dependency>
  571. <groupId>net.sf.ehcache</groupId>
  572. <artifactId>ehcache</artifactId>
  573. <version>1.6.2</version>
  574. <optional>true</optional>
  575. </dependency>
  576. <dependency>
  577. <groupId>commons-collections</groupId>
  578. <artifactId>commons-collections</artifactId>
  579. <version>3.2</version>
  580. </dependency>
  581. <dependency>
  582. <groupId>javax.annotation</groupId>
  583. <artifactId>jsr250-api</artifactId>
  584. <version>1.0</version>
  585. </dependency>
  586. <dependency>
  587. <groupId>hsqldb</groupId>
  588. <artifactId>hsqldb</artifactId>
  589. <version>1.8.0.10</version>
  590. </dependency>
  591. <dependency>
  592. <groupId>commons-logging</groupId>
  593. <artifactId>commons-logging</artifactId>
  594. <version>1.1.1</version>
  595. <optional>true</optional>
  596. </dependency>
  597. <dependency>
  598. <groupId>javax.servlet</groupId>
  599. <artifactId>servlet-api</artifactId>
  600. <version>2.5</version>
  601. <scope>provided</scope>
  602. </dependency>
  603. <dependency>
  604. <groupId>javax.servlet</groupId>
  605. <artifactId>jstl</artifactId>
  606. <version>${jstl.version}</version>
  607. <scope>runtime</scope>
  608. </dependency>
  609. <dependency>
  610. <groupId>taglibs</groupId>
  611. <artifactId>standard</artifactId>
  612. <version>${jstl.version}</version>
  613. <scope>runtime</scope>
  614. </dependency>
  615. <dependency>
  616. <groupId>log4j</groupId>
  617. <artifactId>log4j</artifactId>
  618. <version>1.2.14</version> <!-- 1.2.15 has some JMX dependencies we don't want in its POM -->
  619. <optional>true</optional>
  620. <scope>runtime</scope>
  621. </dependency>
  622. </dependencies>
  623. </dependencyManagement>
  624. <properties>
  625. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  626. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  627. <spring.version>3.0.1.RELEASE</spring.version>
  628. <jstl.version>1.1.2</jstl.version>
  629. <jetty.version>6.1.22</jetty.version>
  630. </properties>
  631. </project>