pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>org.acegisecurity</groupId>
  6. <artifactId>acegi-security-parent</artifactId>
  7. <version>1.1-SNAPSHOT</version>
  8. <name>Acegi Security System for Spring - Parent</name>
  9. <packaging>pom</packaging>
  10. <modules>
  11. <module>core</module>
  12. <module>core-tiger</module>
  13. <module>adapters</module>
  14. </modules>
  15. <description>Acegi Security System for Spring</description>
  16. <organization>
  17. <name>Acegi Technology Pty Limited</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>
  33. scm:svn:https://acegisecurity.svn.sourceforge.net/svnroot/acegisecurity/trunk/acegisecurity
  34. </connection>
  35. <developerConnection>
  36. scm:svn:https://acegisecurity.svn.sourceforge.net/svnroot/acegisecurity/trunk/acegisecurity
  37. </developerConnection>
  38. <url>
  39. http://acegisecurity.svn.sourceforge.net/viewcvs.cgi/acegisecurity/trunk/acegisecurity/
  40. </url>
  41. </scm>
  42. <!--
  43. <issueManagement>
  44. <system>bugzilla</system>
  45. <url>http://jira.codehaus.org/browse/MNG</url>
  46. </issueManagement>
  47. -->
  48. <distributionManagement>
  49. <repository>
  50. <id>sourceforge.net</id>
  51. <name>Acegi Releases Repository at Sourceforge</name>
  52. <url>
  53. scp://shell.sourceforge.net/home/groups/a/ac/acegisecurity/htdocs/repository/releases
  54. </url>
  55. </repository>
  56. <snapshotRepository>
  57. <id>sourceforge.net</id>
  58. <name>Acegi Snapshots Repository at Sourceforge</name>
  59. <url>
  60. scp://shell.sourceforge.net/home/groups/a/ac/acegisecurity/htdocs/repository/snapshots
  61. </url>
  62. </snapshotRepository>
  63. <site>
  64. <id>sourceforge.net</id>
  65. <name>Acegi Website at Sourceforge</name>
  66. <url>
  67. scp://shell.sourceforge.net/home/groups/a/ac/acegisecurity/htdocs/maven2
  68. </url>
  69. </site>
  70. </distributionManagement>
  71. <repositories>
  72. <repository>
  73. <id>sourceforge.net</id>
  74. <name>Acegi snapshot repository</name>
  75. <url>
  76. http://acegisecurity.sourceforge.net/repository/snapshots
  77. </url>
  78. <releases>
  79. <enabled>false</enabled>
  80. </releases>
  81. </repository>
  82. <repository>
  83. <id>apache.org</id>
  84. <name>Apache snapshot repository</name>
  85. <url>http://svn.apache.org/maven-snapshot-repository</url>
  86. <releases>
  87. <enabled>false</enabled>
  88. </releases>
  89. </repository>
  90. </repositories>
  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. <mailingList>
  114. <name>Spring User List</name>
  115. <!--
  116. <subscribe>https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer</subscribe>
  117. <unsubscribe>users-unsubscribe@maven.apache.org</unsubscribe>
  118. <post>users@maven.apache.org</post>
  119. -->
  120. <archive>
  121. http://sourceforge.net/mailarchive/forum.php?forum_id=30287
  122. </archive>
  123. </mailingList>
  124. </mailingLists>
  125. <developers>
  126. <developer>
  127. <name>Ben Alex</name>
  128. <id>benalex</id>
  129. <email>benalex at users.sourceforge.net</email>
  130. <organization>
  131. Acegi Technology Pty Limited (http://www.acegi.com.au)
  132. </organization>
  133. <timezone>+10</timezone>
  134. </developer>
  135. <developer>
  136. <name>Francois Beausoleil</name>
  137. <id>fbos</id>
  138. <email>fbos at users.sourceforge.net</email>
  139. </developer>
  140. <developer>
  141. <name>Colin Sampaleanu</name>
  142. <id>colins</id>
  143. <email>colinml1 at exis.com</email>
  144. </developer>
  145. <developer>
  146. <name>Carlos Sanchez</name>
  147. <id>carlossg</id>
  148. <email>carlossg at users.sourceforge.net</email>
  149. <timezone>+1</timezone>
  150. </developer>
  151. <developer>
  152. <name>Luke Taylor</name>
  153. <id>luke_t</id>
  154. <email>luke at monkeymachine.ltd.uk</email>
  155. <organization>
  156. Monkey Machine Ltd. (http://monkeymachine.ltd.uk)
  157. </organization>
  158. <timezone>0</timezone>
  159. </developer>
  160. <developer>
  161. <name>Ray Krueger</name>
  162. <id>raykrueger</id>
  163. <email>raykrueger at users.sourceforge.net</email>
  164. </developer>
  165. <developer>
  166. <name>Robert Sanders</name>
  167. <id>robertsanders</id>
  168. <email>robertsanders at users.sourceforge.net</email>
  169. </developer>
  170. <developer>
  171. <name>Mark St.Godard</name>
  172. <id>markstg</id>
  173. <email>markstg at users.sourceforge.net</email>
  174. </developer>
  175. <developer>
  176. <name>Vishal Puri</name>
  177. <id>vishalpuri</id>
  178. <email>vishalpuri at users.sourceforge.net</email>
  179. <organization>
  180. Interface21 Pty Limited (http://www.interface21.com)
  181. </organization>
  182. <timezone>+10</timezone>
  183. </developer>
  184. </developers>
  185. <contributors>
  186. <contributor>
  187. <name>Alan Stewart</name>
  188. </contributor>
  189. <contributor>
  190. <name>Cameron Braid</name>
  191. </contributor>
  192. <contributor>
  193. <name>Patrick Burleson</name>
  194. </contributor>
  195. <contributor>
  196. <name>Wesley Hall</name>
  197. </contributor>
  198. <contributor>
  199. <name>Scott Evans</name>
  200. </contributor>
  201. <contributor>
  202. <name>Travis Gregg</name>
  203. </contributor>
  204. <contributor>
  205. <name>Karel Miarka</name>
  206. </contributor>
  207. <contributor>
  208. <name>James Monaghan</name>
  209. </contributor>
  210. <contributor>
  211. <name>Andrew Petro</name>
  212. </contributor>
  213. <contributor>
  214. <name>Aaron Tang</name>
  215. </contributor>
  216. <contributor>
  217. <name>Orlando Garcia Carmona</name>
  218. </contributor>
  219. <contributor>
  220. <name>Joni Suominen</name>
  221. </contributor>
  222. <contributor>
  223. <name>Sergio Berna</name>
  224. </contributor>
  225. <contributor>
  226. <name>Paulo Neves</name>
  227. </contributor>
  228. <contributor>
  229. <name>Mike Perham</name>
  230. </contributor>
  231. <contributor>
  232. <name>Robin Bramley</name>
  233. </contributor>
  234. </contributors>
  235. <dependencies>
  236. <dependency>
  237. <groupId>junit</groupId>
  238. <artifactId>junit</artifactId>
  239. <version>3.8.1</version>
  240. <scope>test</scope>
  241. </dependency>
  242. </dependencies>
  243. <build>
  244. <plugins>
  245. <plugin>
  246. <groupId>org.apache.maven.plugins</groupId>
  247. <artifactId>maven-compiler-plugin</artifactId>
  248. <configuration>
  249. <source>1.5</source>
  250. <target>1.5</target>
  251. </configuration>
  252. </plugin>
  253. <plugin>
  254. <groupId>org.apache.maven.plugins</groupId>
  255. <artifactId>maven-jar-plugin</artifactId>
  256. <executions>
  257. <execution>
  258. <goals>
  259. <goal>test-jar</goal>
  260. </goals>
  261. <phase>package</phase>
  262. </execution>
  263. </executions>
  264. </plugin>
  265. <plugin>
  266. <groupId>org.apache.maven.plugins</groupId>
  267. <artifactId>maven-source-plugin</artifactId>
  268. <version>2.0</version>
  269. </plugin>
  270. <plugin>
  271. <groupId>org.apache.maven.plugins</groupId>
  272. <artifactId>maven-surefire-plugin</artifactId>
  273. <version>2.3</version>
  274. <configuration>
  275. <includes>
  276. <include>**/*Tests.class</include>
  277. </includes>
  278. <excludes>
  279. <exclude>**/Abstract*</exclude>
  280. </excludes>
  281. <forkMode>once</forkMode>
  282. <systemProperties>
  283. <!-- The working directory for the embedded apache Ldap test server -->
  284. <property>
  285. <name>apacheDSWorkDir</name>
  286. <value>
  287. ${basedir}/target/apacheds-work
  288. </value>
  289. </property>
  290. </systemProperties>
  291. </configuration>
  292. </plugin>
  293. <!-- IDE -->
  294. <plugin>
  295. <groupId>org.apache.maven.plugins</groupId>
  296. <artifactId>maven-eclipse-plugin</artifactId>
  297. <version>2.2</version>
  298. <configuration>
  299. <downloadSources>true</downloadSources>
  300. <wtpversion>1.0</wtpversion>
  301. </configuration>
  302. </plugin>
  303. <plugin>
  304. <groupId>org.apache.maven.plugins</groupId>
  305. <artifactId>maven-idea-plugin</artifactId>
  306. <version>2.0</version>
  307. <configuration>
  308. <downloadSources>true</downloadSources>
  309. <!--<downloadJavadocs>true</downloadJavadocs>-->
  310. <dependenciesAsLibraries>
  311. true
  312. </dependenciesAsLibraries>
  313. </configuration>
  314. </plugin>
  315. <plugin>
  316. <artifactId>maven-release-plugin</artifactId>
  317. <configuration>
  318. <tagBase>
  319. https://acegisecurity.svn.sourceforge.net/svnroot/acegisecurity/tags
  320. </tagBase>
  321. </configuration>
  322. </plugin>
  323. </plugins>
  324. </build>
  325. <reporting>
  326. <plugins>
  327. <plugin>
  328. <groupId>org.apache.maven.plugins</groupId>
  329. <artifactId>maven-surefire-report-plugin</artifactId>
  330. <version>2.3</version>
  331. </plugin>
  332. <plugin>
  333. <groupId>org.apache.maven.plugins</groupId>
  334. <artifactId>maven-jxr-plugin</artifactId>
  335. </plugin>
  336. <plugin>
  337. <groupId>org.apache.maven.plugins</groupId>
  338. <artifactId>maven-checkstyle-plugin</artifactId>
  339. <configuration>
  340. <configLocation>
  341. acegi_checkstyle.xml
  342. </configLocation>
  343. </configuration>
  344. </plugin>
  345. <plugin>
  346. <groupId>org.apache.maven.plugins</groupId>
  347. <artifactId>maven-pmd-plugin</artifactId>
  348. </plugin>
  349. <plugin>
  350. <groupId>org.codehaus.mojo</groupId>
  351. <artifactId>cobertura-maven-plugin</artifactId>
  352. </plugin>
  353. <plugin>
  354. <groupId>org.apache.maven.plugins</groupId>
  355. <artifactId>maven-javadoc-plugin</artifactId>
  356. <configuration>
  357. <links>
  358. <link>
  359. http://java.sun.com/j2se/1.5.0/docs/api
  360. </link>
  361. <link>
  362. http://jakarta.apache.org/commons/dbcp/apidocs/
  363. </link>
  364. <link>
  365. http://jakarta.apache.org/commons/fileupload/apidocs/
  366. </link>
  367. <link>
  368. http://jakarta.apache.org/commons/httpclient/apidocs/
  369. </link>
  370. <link>
  371. http://jakarta.apache.org/commons/logging/api/
  372. </link>
  373. <link>
  374. http://jakarta.apache.org/commons/pool/apidocs/
  375. </link>
  376. <link>http://www.junit.org/junit/javadoc/</link>
  377. <link>
  378. http://logging.apache.org/log4j/docs/api/
  379. </link>
  380. <link>
  381. http://jakarta.apache.org/regexp/apidocs/
  382. </link>
  383. <link>
  384. http://jakarta.apache.org/velocity/api/
  385. </link>
  386. <link>
  387. http://www.springframework.org/docs/api/
  388. </link>
  389. <link>
  390. http://jakarta.apache.org/commons/lang/api/
  391. </link>
  392. <link>
  393. http://developer.ja-sig.org/projects/cas/multiproject/cas-server/apidocs/
  394. </link>
  395. <link>
  396. http://jakarta.apache.org/commons/codec/apidocs/
  397. </link>
  398. <link>
  399. http://jakarta.apache.org/commons/collections/api/
  400. </link>
  401. <link>
  402. http://jakarta.apache.org/commons/logging/apidocs/
  403. </link>
  404. <link>
  405. http://tomcat.apache.org/tomcat-5.0-doc/servletapi/
  406. </link>
  407. </links>
  408. </configuration>
  409. </plugin>
  410. <plugin>
  411. <groupId>org.codehaus.mojo</groupId>
  412. <artifactId>taglist-maven-plugin</artifactId>
  413. </plugin>
  414. <plugin>
  415. <groupId>org.codehaus.mojo</groupId>
  416. <artifactId>clirr-maven-plugin</artifactId>
  417. </plugin>
  418. </plugins>
  419. </reporting>
  420. <dependencyManagement>
  421. <dependencies>
  422. <dependency>
  423. <groupId>org.springframework</groupId>
  424. <artifactId>spring-mock</artifactId>
  425. <version>${spring.version}</version>
  426. </dependency>
  427. <dependency>
  428. <groupId>org.springframework</groupId>
  429. <artifactId>spring-remoting</artifactId>
  430. <version>${spring.version}</version>
  431. </dependency>
  432. <dependency>
  433. <groupId>org.springframework</groupId>
  434. <artifactId>spring-jdbc</artifactId>
  435. <version>${spring.version}</version>
  436. </dependency>
  437. <dependency>
  438. <groupId>org.springframework</groupId>
  439. <artifactId>spring-support</artifactId>
  440. <version>${spring.version}</version>
  441. </dependency>
  442. <dependency>
  443. <groupId>log4j</groupId>
  444. <artifactId>log4j</artifactId>
  445. <version>1.2.9</version>
  446. <optional>true</optional>
  447. <scope>runtime</scope>
  448. </dependency>
  449. </dependencies>
  450. </dependencyManagement>
  451. <properties>
  452. <spring.version>2.0.4</spring.version>
  453. </properties>
  454. </project>