pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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. <parent>
  6. <groupId>org.acegisecurity</groupId>
  7. <artifactId>acegi-security-parent</artifactId>
  8. <version>1.1-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>acegi-security</artifactId>
  11. <name>Acegi Security System for Spring</name>
  12. <scm>
  13. <connection>scm:svn:https://svn.sourceforge.net/svnroot/acegisecurity/trunk/acegisecurity/core</connection>
  14. <developerConnection>scm:svn:https://svn.sourceforge.net/svnroot/acegisecurity/trunk/acegisecurity/core</developerConnection>
  15. <url>http://svn.sourceforge.net/viewcvs.cgi/acegisecurity/trunk/acegisecurity/core/</url>
  16. </scm>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework</groupId>
  20. <artifactId>spring-remoting</artifactId>
  21. <version>1.2.7</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework</groupId>
  25. <artifactId>spring-jdbc</artifactId>
  26. <version>1.2.7</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework</groupId>
  30. <artifactId>spring-support</artifactId>
  31. <version>1.2.7</version>
  32. <scope>runtime</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework</groupId>
  36. <artifactId>spring-mock</artifactId>
  37. <optional>true</optional>
  38. </dependency>
  39. <dependency>
  40. <groupId>ehcache</groupId>
  41. <artifactId>ehcache</artifactId>
  42. <version>1.1</version>
  43. <optional>true</optional>
  44. </dependency>
  45. <dependency>
  46. <groupId>cas</groupId>
  47. <artifactId>casclient</artifactId>
  48. <version>2.0.11</version>
  49. <optional>true</optional>
  50. </dependency>
  51. <dependency>
  52. <groupId>commons-lang</groupId>
  53. <artifactId>commons-lang</artifactId>
  54. <version>2.1</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>commons-logging</groupId>
  58. <artifactId>commons-logging</artifactId>
  59. <version>1.0.4</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>commons-codec</groupId>
  63. <artifactId>commons-codec</artifactId>
  64. <version>1.3</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>oro</groupId>
  68. <artifactId>oro</artifactId>
  69. <version>2.0.8</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>commons-collections</groupId>
  73. <artifactId>commons-collections</artifactId>
  74. <version>3.1</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>aspectj</groupId>
  78. <artifactId>aspectjrt</artifactId>
  79. <version>1.2</version>
  80. <optional>true</optional>
  81. </dependency>
  82. <dependency>
  83. <groupId>javax.servlet</groupId>
  84. <artifactId>jsp-api</artifactId>
  85. <version>2.0</version>
  86. <optional>true</optional>
  87. </dependency>
  88. <dependency>
  89. <groupId>taglibs</groupId>
  90. <artifactId>standard</artifactId>
  91. <version>1.0.6</version>
  92. <optional>true</optional>
  93. </dependency>
  94. <dependency>
  95. <groupId>hsqldb</groupId>
  96. <artifactId>hsqldb</artifactId>
  97. <version>1.7.3.0</version>
  98. <scope>test</scope>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.apache.directory.server</groupId>
  102. <artifactId>apacheds-core</artifactId>
  103. <version>1.0-RC3</version>
  104. <scope>test</scope>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.slf4j</groupId>
  108. <artifactId>slf4j-log4j12</artifactId>
  109. <version>1.0.1</version>
  110. <scope>test</scope>
  111. </dependency>
  112. <dependency>
  113. <groupId>jmock</groupId>
  114. <artifactId>jmock</artifactId>
  115. <version>1.0.1</version>
  116. <scope>test</scope>
  117. </dependency>
  118. <dependency>
  119. <groupId>log4j</groupId>
  120. <artifactId>log4j</artifactId>
  121. </dependency>
  122. </dependencies>
  123. <build>
  124. <resources>
  125. <resource>
  126. <directory>${basedir}/../</directory>
  127. <targetPath>META-INF</targetPath>
  128. <includes>
  129. <include>notice.txt</include>
  130. </includes>
  131. <filtering>false</filtering>
  132. </resource>
  133. <resource>
  134. <directory>${basedir}/src/main/resources/org/acegisecurity/taglibs</directory>
  135. <targetPath>META-INF</targetPath>
  136. <includes>
  137. <include>*.tld</include>
  138. </includes>
  139. <filtering>false</filtering>
  140. </resource>
  141. <resource>
  142. <directory>${basedir}/src/main/resources</directory>
  143. <targetPath>/</targetPath>
  144. <includes>
  145. <include>**/*</include>
  146. </includes>
  147. <filtering>false</filtering>
  148. </resource>
  149. </resources>
  150. </build>
  151. </project>