pom.xml 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>org.springframework.security</groupId>
  6. <artifactId>spring-security-core</artifactId>
  7. <version>3.2.0.CI-SNAPSHOT</version>
  8. <name>spring-security-core</name>
  9. <description>spring-security-core</description>
  10. <url>http://springsource.org/spring-security</url>
  11. <organization>
  12. <name>SpringSource</name>
  13. <url>http://springsource.org/</url>
  14. </organization>
  15. <licenses>
  16. <license>
  17. <name>The Apache Software License, Version 2.0</name>
  18. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  19. <distribution>repo</distribution>
  20. </license>
  21. </licenses>
  22. <developers>
  23. <developer>
  24. <id>rwinch</id>
  25. <name>Rob Winch</name>
  26. <email>rwinch@vmware.com</email>
  27. </developer>
  28. </developers>
  29. <scm>
  30. <connection>scm:git:git://github.com/SpringSource/spring-security</connection>
  31. <developerConnection>scm:git:git://github.com/SpringSource/spring-security</developerConnection>
  32. <url>https://github.com/SpringSource/spring-security</url>
  33. </scm>
  34. <build>
  35. <plugins>
  36. <plugin>
  37. <artifactId>maven-compiler-plugin</artifactId>
  38. <configuration>
  39. <source>1.7</source>
  40. <target>1.7</target>
  41. </configuration>
  42. </plugin>
  43. </plugins>
  44. </build>
  45. <repositories>
  46. <repository>
  47. <id>spring-snasphot</id>
  48. <url>http://repo.springsource.org/libs-snapshot</url>
  49. </repository>
  50. </repositories>
  51. <dependencies>
  52. <dependency>
  53. <groupId>aopalliance</groupId>
  54. <artifactId>aopalliance</artifactId>
  55. <version>1.0</version>
  56. <scope>compile</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework</groupId>
  60. <artifactId>spring-aop</artifactId>
  61. <version>3.2.4.RELEASE</version>
  62. <scope>compile</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework</groupId>
  66. <artifactId>spring-beans</artifactId>
  67. <version>3.2.4.RELEASE</version>
  68. <scope>compile</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework</groupId>
  72. <artifactId>spring-context</artifactId>
  73. <version>3.2.4.RELEASE</version>
  74. <scope>compile</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework</groupId>
  78. <artifactId>spring-core</artifactId>
  79. <version>3.2.4.RELEASE</version>
  80. <scope>compile</scope>
  81. <exclusions>
  82. <exclusion>
  83. <artifactId>commons-logging</artifactId>
  84. <groupId>commons-logging</groupId>
  85. </exclusion>
  86. </exclusions>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework</groupId>
  90. <artifactId>spring-expression</artifactId>
  91. <version>3.2.4.RELEASE</version>
  92. <scope>compile</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>commons-logging</groupId>
  96. <artifactId>commons-logging</artifactId>
  97. <version>1.1.1</version>
  98. <scope>compile</scope>
  99. <optional>true</optional>
  100. </dependency>
  101. <dependency>
  102. <groupId>javax.annotation</groupId>
  103. <artifactId>jsr250-api</artifactId>
  104. <version>1.0</version>
  105. <scope>compile</scope>
  106. <optional>true</optional>
  107. </dependency>
  108. <dependency>
  109. <groupId>net.sf.ehcache</groupId>
  110. <artifactId>ehcache</artifactId>
  111. <version>1.6.2</version>
  112. <scope>compile</scope>
  113. <optional>true</optional>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.aspectj</groupId>
  117. <artifactId>aspectjrt</artifactId>
  118. <version>1.6.10</version>
  119. <scope>compile</scope>
  120. <optional>true</optional>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.springframework</groupId>
  124. <artifactId>spring-jdbc</artifactId>
  125. <version>3.2.4.RELEASE</version>
  126. <scope>compile</scope>
  127. <optional>true</optional>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.springframework</groupId>
  131. <artifactId>spring-tx</artifactId>
  132. <version>3.2.4.RELEASE</version>
  133. <scope>compile</scope>
  134. <optional>true</optional>
  135. </dependency>
  136. <dependency>
  137. <groupId>cglib</groupId>
  138. <artifactId>cglib-nodep</artifactId>
  139. <version>2.2</version>
  140. <scope>test</scope>
  141. </dependency>
  142. <dependency>
  143. <groupId>ch.qos.logback</groupId>
  144. <artifactId>logback-classic</artifactId>
  145. <version>0.9.29</version>
  146. <scope>test</scope>
  147. </dependency>
  148. <dependency>
  149. <groupId>commons-collections</groupId>
  150. <artifactId>commons-collections</artifactId>
  151. <version>3.2</version>
  152. <scope>test</scope>
  153. </dependency>
  154. <dependency>
  155. <groupId>hsqldb</groupId>
  156. <artifactId>hsqldb</artifactId>
  157. <version>1.8.0.10</version>
  158. <scope>test</scope>
  159. </dependency>
  160. <dependency>
  161. <groupId>junit</groupId>
  162. <artifactId>junit</artifactId>
  163. <version>4.10</version>
  164. <scope>test</scope>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.easytesting</groupId>
  168. <artifactId>fest-assert</artifactId>
  169. <version>1.4</version>
  170. <scope>test</scope>
  171. </dependency>
  172. <dependency>
  173. <groupId>org.mockito</groupId>
  174. <artifactId>mockito-core</artifactId>
  175. <version>1.9.5</version>
  176. <scope>test</scope>
  177. </dependency>
  178. <dependency>
  179. <groupId>org.powermock</groupId>
  180. <artifactId>powermock-api-mockito</artifactId>
  181. <version>1.5.1</version>
  182. <scope>test</scope>
  183. </dependency>
  184. <dependency>
  185. <groupId>org.powermock</groupId>
  186. <artifactId>powermock-api-support</artifactId>
  187. <version>1.5.1</version>
  188. <scope>test</scope>
  189. </dependency>
  190. <dependency>
  191. <groupId>org.powermock</groupId>
  192. <artifactId>powermock-core</artifactId>
  193. <version>1.5.1</version>
  194. <scope>test</scope>
  195. </dependency>
  196. <dependency>
  197. <groupId>org.powermock</groupId>
  198. <artifactId>powermock-module-junit4</artifactId>
  199. <version>1.5.1</version>
  200. <scope>test</scope>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.powermock</groupId>
  204. <artifactId>powermock-module-junit4-common</artifactId>
  205. <version>1.5.1</version>
  206. <scope>test</scope>
  207. </dependency>
  208. <dependency>
  209. <groupId>org.powermock</groupId>
  210. <artifactId>powermock-reflect</artifactId>
  211. <version>1.5.1</version>
  212. <scope>test</scope>
  213. </dependency>
  214. <dependency>
  215. <groupId>org.slf4j</groupId>
  216. <artifactId>jcl-over-slf4j</artifactId>
  217. <version>1.7.5</version>
  218. <scope>test</scope>
  219. </dependency>
  220. <dependency>
  221. <groupId>org.springframework</groupId>
  222. <artifactId>spring-test</artifactId>
  223. <version>3.2.4.RELEASE</version>
  224. <scope>test</scope>
  225. </dependency>
  226. </dependencies>
  227. </project>