pom.xml 11 KB

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