pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <?xml version="1.0"?>
  2. <project>
  3. <parent>
  4. <artifactId>acegi-security-sandbox</artifactId>
  5. <groupId>org.acegisecurity</groupId>
  6. <version>2.0-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <groupId>org.acegisecurity</groupId>
  10. <artifactId>spring-security-config</artifactId>
  11. <name>spring-security-config</name>
  12. <version>2.0.0-SNAPSHOT</version>
  13. <url>http://maven.apache.org</url>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.acegisecurity</groupId>
  17. <artifactId>acegi-security-tiger</artifactId>
  18. <version>1.0.6-SNAPSHOT</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework</groupId>
  22. <artifactId>spring-remoting</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework</groupId>
  26. <artifactId>spring-jdbc</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework</groupId>
  30. <artifactId>spring-support</artifactId>
  31. <scope>runtime</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework</groupId>
  35. <artifactId>spring-mock</artifactId>
  36. <optional>true</optional>
  37. </dependency>
  38. <dependency>
  39. <groupId>net.sf.ehcache</groupId>
  40. <artifactId>ehcache</artifactId>
  41. <version>1.2.4</version>
  42. <optional>true</optional>
  43. </dependency>
  44. <dependency>
  45. <groupId>cas</groupId>
  46. <artifactId>casclient</artifactId>
  47. <version>2.0.11</version>
  48. <optional>true</optional>
  49. </dependency>
  50. <dependency>
  51. <groupId>commons-lang</groupId>
  52. <artifactId>commons-lang</artifactId>
  53. <version>2.1</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>commons-logging</groupId>
  57. <artifactId>commons-logging</artifactId>
  58. <version>1.0.4</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>commons-codec</groupId>
  62. <artifactId>commons-codec</artifactId>
  63. <version>1.3</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>oro</groupId>
  67. <artifactId>oro</artifactId>
  68. <version>2.0.8</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>commons-collections</groupId>
  72. <artifactId>commons-collections</artifactId>
  73. <version>3.1</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>commons-attributes</groupId>
  77. <artifactId>commons-attributes-compiler</artifactId>
  78. <version>2.1</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>commons-attributes</groupId>
  82. <artifactId>commons-attributes-api</artifactId>
  83. <version>2.1</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>commons-attributes</groupId>
  87. <artifactId>commons-attributes-plugin</artifactId>
  88. <version>2.1</version>
  89. <type>plugin</type>
  90. </dependency>
  91. <dependency>
  92. <groupId>aspectj</groupId>
  93. <artifactId>aspectjrt</artifactId>
  94. <version>1.2</version>
  95. <optional>true</optional>
  96. </dependency>
  97. <dependency>
  98. <groupId>javax.servlet</groupId>
  99. <artifactId>jsp-api</artifactId>
  100. <version>2.0</version>
  101. <optional>true</optional>
  102. </dependency>
  103. <dependency>
  104. <groupId>javax.servlet</groupId>
  105. <artifactId>servlet-api</artifactId>
  106. <version>2.4</version>
  107. <optional>true</optional>
  108. </dependency>
  109. <dependency>
  110. <groupId>taglibs</groupId>
  111. <artifactId>standard</artifactId>
  112. <version>1.0.6</version>
  113. <optional>true</optional>
  114. </dependency>
  115. <dependency>
  116. <groupId>hsqldb</groupId>
  117. <artifactId>hsqldb</artifactId>
  118. <version>1.8.0.4</version>
  119. <scope>test</scope>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.apache.directory.server</groupId>
  123. <artifactId>apacheds-core</artifactId>
  124. <version>1.0.0</version>
  125. <scope>test</scope>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.slf4j</groupId>
  129. <artifactId>slf4j-log4j12</artifactId>
  130. <version>1.0.1</version>
  131. <scope>test</scope>
  132. </dependency>
  133. <dependency>
  134. <groupId>jmock</groupId>
  135. <artifactId>jmock</artifactId>
  136. <version>1.0.1</version>
  137. <scope>test</scope>
  138. </dependency>
  139. <dependency>
  140. <groupId>log4j</groupId>
  141. <artifactId>log4j</artifactId>
  142. </dependency>
  143. </dependencies>
  144. <build>
  145. <plugins>
  146. <plugin>
  147. <groupId>org.apache.maven.plugins</groupId>
  148. <artifactId>maven-compiler-plugin</artifactId>
  149. <configuration>
  150. <source>1.5</source>
  151. <target>1.5</target>
  152. </configuration>
  153. </plugin>
  154. </plugins>
  155. </build>
  156. <reporting>
  157. <plugins>
  158. <plugin>
  159. <groupId>org.apache.maven.plugins</groupId>
  160. <artifactId>maven-pmd-plugin</artifactId>
  161. <configuration>
  162. <targetJdk>1.5</targetJdk>
  163. </configuration>
  164. </plugin>
  165. </plugins>
  166. </reporting>
  167. </project>