pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  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>1.1-SNAPSHOT</version>
  6. <name>Acegi Security System for Spring - Parent</name>
  7. <packaging>pom</packaging>
  8. <modules>
  9. <module>core</module>
  10. <module>core-tiger</module>
  11. <module>adapters</module>
  12. </modules>
  13. <description>Acegi Security System for Spring</description>
  14. <organization>
  15. <name>Acegi Technology Pty Limited</name>
  16. <url>http://sourceforge.net/projects/acegisecurity</url>
  17. <!--<logo>http://sourceforge.net/sflogo.php?group_id=104215&amp;type=5</logo>-->
  18. </organization>
  19. <inceptionYear>2004</inceptionYear>
  20. <!--<logo>http://acegisecurity.org/logo.gif</logo>-->
  21. <url>http://acegisecurity.org/</url>
  22. <licenses>
  23. <license>
  24. <name>The Apache Software License, Version 2.0</name>
  25. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  26. <distribution>repo</distribution>
  27. </license>
  28. </licenses>
  29. <scm>
  30. <connection>scm:svn:https://svn.sourceforge.net/svnroot/acegisecurity/trunk/acegisecurity</connection>
  31. <developerConnection>scm:svn:https://svn.sourceforge.net/svnroot/acegisecurity/trunk/acegisecurity</developerConnection>
  32. <url>http://svn.sourceforge.net/viewcvs.cgi/acegisecurity/trunk/acegisecurity/</url>
  33. </scm>
  34. <!--
  35. <issueManagement>
  36. <system>bugzilla</system>
  37. <url>http://jira.codehaus.org/browse/MNG</url>
  38. </issueManagement>
  39. -->
  40. <distributionManagement>
  41. <repository>
  42. <id>sourceforge.net</id>
  43. <name>Acegi Releases Repository at Sourceforge</name>
  44. <url>scp://shell.sourceforge.net/home/groups/a/ac/acegisecurity/htdocs/repository/releases</url>
  45. </repository>
  46. <snapshotRepository>
  47. <id>sourceforge.net</id>
  48. <name>Acegi Snapshots Repository at Sourceforge</name>
  49. <url>scp://shell.sourceforge.net/home/groups/a/ac/acegisecurity/htdocs/repository/snapshots</url>
  50. </snapshotRepository>
  51. <site>
  52. <id>sourceforge.net</id>
  53. <name>Acegi Website at Sourceforge</name>
  54. <url>scp://shell.sourceforge.net/home/groups/a/ac/acegisecurity/htdocs/maven2</url>
  55. </site>
  56. </distributionManagement>
  57. <repositories>
  58. <repository>
  59. <id>sourceforge.net</id>
  60. <name>Acegi snapshot repository</name>
  61. <url>http://acegisecurity.sourceforge.net/repository/snapshots</url>
  62. <releases>
  63. <enabled>false</enabled>
  64. </releases>
  65. </repository>
  66. <repository>
  67. <id>apache.org</id>
  68. <name>Apache snapshot repository</name>
  69. <url>http://svn.apache.org/maven-snapshot-repository</url>
  70. <releases>
  71. <enabled>false</enabled>
  72. </releases>
  73. </repository>
  74. </repositories>
  75. <mailingLists>
  76. <mailingList>
  77. <name>Acegi Developer List</name>
  78. <subscribe>https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer</subscribe>
  79. <!--
  80. <unsubscribe>https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer</unsubscribe>
  81. <post>acegisecurity-developer@lists.sourceforge.net</post>
  82. -->
  83. <archive>http://sourceforge.net/mailarchive/forum.php?forum_id=40659</archive>
  84. <otherArchives>
  85. <otherArchive>http://news.gmane.org/gmane.comp.java.springframework.acegisecurity.devel/</otherArchive>
  86. <otherArchive>http://www.mail-archive.com/acegisecurity-developer@lists.sourceforge.net/</otherArchive>
  87. </otherArchives>
  88. </mailingList>
  89. <mailingList>
  90. <name>Spring User List</name>
  91. <!--
  92. <subscribe>https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer</subscribe>
  93. <unsubscribe>users-unsubscribe@maven.apache.org</unsubscribe>
  94. <post>users@maven.apache.org</post>
  95. -->
  96. <archive>http://sourceforge.net/mailarchive/forum.php?forum_id=30287</archive>
  97. </mailingList>
  98. </mailingLists>
  99. <developers>
  100. <developer>
  101. <name>Ben Alex</name>
  102. <id>benalex</id>
  103. <email>benalex at users.sourceforge.net</email>
  104. <organization>Acegi Technology Pty Limited (http://www.acegi.com.au)</organization>
  105. <timezone>+10</timezone>
  106. </developer>
  107. <developer>
  108. <name>Francois Beausoleil</name>
  109. <id>fbos</id>
  110. <email>fbos at users.sourceforge.net</email>
  111. </developer>
  112. <developer>
  113. <name>Colin Sampaleanu</name>
  114. <id>colins</id>
  115. <email>colinml1 at exis.com</email>
  116. </developer>
  117. <developer>
  118. <name>Carlos Sanchez</name>
  119. <id>carlossg</id>
  120. <email>carlossg at users.sourceforge.net</email>
  121. <timezone>+1</timezone>
  122. </developer>
  123. <developer>
  124. <name>Luke Taylor</name>
  125. <id>luke_t</id>
  126. <email>luke at monkeymachine.ltd.uk</email>
  127. <organization>Monkey Machine Ltd. (http://monkeymachine.ltd.uk)</organization>
  128. <timezone>0</timezone>
  129. </developer>
  130. <developer>
  131. <name>Ray Krueger</name>
  132. <id>raykrueger</id>
  133. <email>raykrueger at users.sourceforge.net</email>
  134. </developer>
  135. <developer>
  136. <name>Robert Sanders</name>
  137. <id>robertsanders</id>
  138. <email>robertsanders at users.sourceforge.net</email>
  139. </developer>
  140. <developer>
  141. <name>Mark St.Godard</name>
  142. <id>markstg</id>
  143. <email>markstg at users.sourceforge.net</email>
  144. </developer>
  145. </developers>
  146. <contributors>
  147. <contributor>
  148. <name>Alan Stewart</name>
  149. </contributor>
  150. <contributor>
  151. <name>Cameron Braid</name>
  152. </contributor>
  153. <contributor>
  154. <name>Patrick Burleson</name>
  155. </contributor>
  156. <contributor>
  157. <name>Wesley Hall</name>
  158. </contributor>
  159. <contributor>
  160. <name>Scott Evans</name>
  161. </contributor>
  162. <contributor>
  163. <name>Travis Gregg</name>
  164. </contributor>
  165. <contributor>
  166. <name>Karel Miarka</name>
  167. </contributor>
  168. <contributor>
  169. <name>James Monaghan</name>
  170. </contributor>
  171. <contributor>
  172. <name>Andrew Petro</name>
  173. </contributor>
  174. <contributor>
  175. <name>Aaron Tang</name>
  176. </contributor>
  177. <contributor>
  178. <name>Orlando Garcia Carmona</name>
  179. </contributor>
  180. <contributor>
  181. <name>Joni Suominen</name>
  182. </contributor>
  183. <contributor>
  184. <name>Sergio Berna</name>
  185. </contributor>
  186. <contributor>
  187. <name>Paulo Neves</name>
  188. </contributor>
  189. <contributor>
  190. <name>Mike Perham</name>
  191. </contributor>
  192. </contributors>
  193. <dependencies>
  194. <dependency>
  195. <groupId>junit</groupId>
  196. <artifactId>junit</artifactId>
  197. <version>3.8.1</version>
  198. <scope>test</scope>
  199. </dependency>
  200. </dependencies>
  201. <build>
  202. <plugins>
  203. <plugin>
  204. <groupId>org.apache.maven.plugins</groupId>
  205. <artifactId>maven-compiler-plugin</artifactId>
  206. <configuration>
  207. <source>1.3</source>
  208. <target>1.3</target>
  209. </configuration>
  210. </plugin>
  211. <plugin>
  212. <groupId>org.apache.maven.plugins</groupId>
  213. <artifactId>maven-jar-plugin</artifactId>
  214. <executions>
  215. <execution>
  216. <goals>
  217. <goal>test-jar</goal>
  218. </goals>
  219. <phase>package</phase>
  220. </execution>
  221. </executions>
  222. </plugin>
  223. <plugin>
  224. <groupId>org.apache.maven.plugins</groupId>
  225. <artifactId>maven-source-plugin</artifactId>
  226. <version>2.0</version>
  227. </plugin>
  228. <plugin>
  229. <groupId>org.apache.maven.plugins</groupId>
  230. <artifactId>maven-surefire-plugin</artifactId>
  231. <configuration>
  232. <includes>
  233. <include>**/*Tests.class</include>
  234. </includes>
  235. <excludes>
  236. <exclude>**/Abstract*</exclude>
  237. </excludes>
  238. <forkMode>once</forkMode>
  239. <systemProperties>
  240. <!-- The working directory for the embedded apache Ldap test server -->
  241. <property>
  242. <name>apacheDSWorkDir</name>
  243. <value>${basedir}/target/apacheds-work</value>
  244. </property>
  245. </systemProperties>
  246. </configuration>
  247. </plugin>
  248. <plugin>
  249. <artifactId>maven-release-plugin</artifactId>
  250. <configuration>
  251. <tagBase>https://svn.sourceforge.net/svnroot/acegisecurity/tags</tagBase>
  252. </configuration>
  253. </plugin>
  254. </plugins>
  255. </build>
  256. <reporting>
  257. <plugins>
  258. <plugin>
  259. <groupId>org.apache.maven.plugins</groupId>
  260. <artifactId>maven-surefire-report-plugin</artifactId>
  261. </plugin>
  262. <plugin>
  263. <groupId>org.apache.maven.plugins</groupId>
  264. <artifactId>maven-jxr-plugin</artifactId>
  265. </plugin>
  266. <plugin>
  267. <groupId>org.apache.maven.plugins</groupId>
  268. <artifactId>maven-checkstyle-plugin</artifactId>
  269. <configuration>
  270. <configLocation>acegi_checkstyle.xml</configLocation>
  271. </configuration>
  272. </plugin>
  273. <plugin>
  274. <groupId>org.apache.maven.plugins</groupId>
  275. <artifactId>maven-pmd-plugin</artifactId>
  276. </plugin>
  277. <plugin>
  278. <groupId>org.codehaus.mojo</groupId>
  279. <artifactId>cobertura-maven-plugin</artifactId>
  280. </plugin>
  281. <plugin>
  282. <groupId>org.apache.maven.plugins</groupId>
  283. <artifactId>maven-javadoc-plugin</artifactId>
  284. <configuration>
  285. <links>
  286. <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
  287. <link>http://jakarta.apache.org/commons/dbcp/apidocs/</link>
  288. <link>http://jakarta.apache.org/commons/fileupload/apidocs/</link>
  289. <link>http://jakarta.apache.org/commons/httpclient/apidocs/</link>
  290. <link>http://jakarta.apache.org/commons/logging/api/</link>
  291. <link>http://jakarta.apache.org/commons/pool/apidocs/</link>
  292. <link>http://www.junit.org/junit/javadoc/</link>
  293. <link>http://logging.apache.org/log4j/docs/api/</link>
  294. <link>http://jakarta.apache.org/regexp/apidocs/</link>
  295. <link>http://jakarta.apache.org/velocity/api/</link>
  296. <link>http://www.springframework.org/docs/api/</link>
  297. <link>http://jakarta.apache.org/commons/lang/api/</link>
  298. <link>http://developer.ja-sig.org/projects/cas/multiproject/cas-server/apidocs/</link>
  299. <link>http://jakarta.apache.org/commons/codec/apidocs/</link>
  300. <link>http://jakarta.apache.org/commons/collections/api/</link>
  301. <link>http://jakarta.apache.org/commons/logging/apidocs/</link>
  302. <link>http://tomcat.apache.org/tomcat-5.0-doc/servletapi/</link>
  303. </links>
  304. </configuration>
  305. </plugin>
  306. <plugin>
  307. <groupId>org.codehaus.mojo</groupId>
  308. <artifactId>taglist-maven-plugin</artifactId>
  309. </plugin>
  310. <plugin>
  311. <groupId>org.codehaus.mojo</groupId>
  312. <artifactId>clirr-maven-plugin</artifactId>
  313. </plugin>
  314. </plugins>
  315. </reporting>
  316. <dependencyManagement>
  317. <dependencies>
  318. <dependency>
  319. <groupId>org.springframework</groupId>
  320. <artifactId>spring-mock</artifactId>
  321. <version>${spring.version}</version>
  322. </dependency>
  323. <dependency>
  324. <groupId>org.springframework</groupId>
  325. <artifactId>spring-remoting</artifactId>
  326. <version>${spring.version}</version>
  327. </dependency>
  328. <dependency>
  329. <groupId>org.springframework</groupId>
  330. <artifactId>spring-jdbc</artifactId>
  331. <version>${spring.version}</version>
  332. </dependency>
  333. <dependency>
  334. <groupId>org.springframework</groupId>
  335. <artifactId>spring-support</artifactId>
  336. <version>${spring.version}</version>
  337. </dependency>
  338. <dependency>
  339. <groupId>log4j</groupId>
  340. <artifactId>log4j</artifactId>
  341. <version>1.2.9</version>
  342. <optional>true</optional>
  343. <scope>runtime</scope>
  344. </dependency>
  345. </dependencies>
  346. </dependencyManagement>
  347. <properties>
  348. <spring.version>1.2.8</spring.version>
  349. </properties>
  350. </project>