pom.xml 18 KB

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