pom.xml 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>org.springframework.security</groupId>
  5. <artifactId>spring-security-messaging</artifactId>
  6. <version>4.0.3.CI-SNAPSHOT</version>
  7. <name>spring-security-messaging</name>
  8. <description>spring-security-messaging</description>
  9. <url>http://spring.io/spring-security</url>
  10. <organization>
  11. <name>spring.io</name>
  12. <url>http://spring.io/</url>
  13. </organization>
  14. <licenses>
  15. <license>
  16. <name>The Apache Software License, Version 2.0</name>
  17. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  18. <distribution>repo</distribution>
  19. </license>
  20. </licenses>
  21. <developers>
  22. <developer>
  23. <id>rwinch</id>
  24. <name>Rob Winch</name>
  25. <email>rwinch@gopivotal.com</email>
  26. </developer>
  27. </developers>
  28. <scm>
  29. <connection>scm:git:git://github.com/spring-projects/spring-security</connection>
  30. <developerConnection>scm:git:git://github.com/spring-projects/spring-security</developerConnection>
  31. <url>https://github.com/spring-projects/spring-security</url>
  32. </scm>
  33. <repositories>
  34. <repository>
  35. <id>spring-snapshot</id>
  36. <url>https://repo.spring.io/snapshot</url>
  37. </repository>
  38. </repositories>
  39. <dependencies>
  40. <dependency>
  41. <groupId>aopalliance</groupId>
  42. <artifactId>aopalliance</artifactId>
  43. <version>1.0</version>
  44. <scope>compile</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.security</groupId>
  48. <artifactId>spring-security-core</artifactId>
  49. <version>4.0.3.CI-SNAPSHOT</version>
  50. <scope>compile</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework</groupId>
  54. <artifactId>spring-beans</artifactId>
  55. <scope>compile</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework</groupId>
  59. <artifactId>spring-context</artifactId>
  60. <scope>compile</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework</groupId>
  64. <artifactId>spring-core</artifactId>
  65. <scope>compile</scope>
  66. <exclusions>
  67. <exclusion>
  68. <artifactId>commons-logging</artifactId>
  69. <groupId>commons-logging</groupId>
  70. </exclusion>
  71. </exclusions>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework</groupId>
  75. <artifactId>spring-expression</artifactId>
  76. <scope>compile</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework</groupId>
  80. <artifactId>spring-messaging</artifactId>
  81. <scope>compile</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>commons-logging</groupId>
  85. <artifactId>commons-logging</artifactId>
  86. <version>1.2</version>
  87. <scope>compile</scope>
  88. <optional>true</optional>
  89. </dependency>
  90. <dependency>
  91. <groupId>javax.servlet</groupId>
  92. <artifactId>javax.servlet-api</artifactId>
  93. <version>3.0.1</version>
  94. <scope>compile</scope>
  95. <optional>true</optional>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.springframework.security</groupId>
  99. <artifactId>spring-security-web</artifactId>
  100. <version>4.0.3.CI-SNAPSHOT</version>
  101. <scope>compile</scope>
  102. <optional>true</optional>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.springframework</groupId>
  106. <artifactId>spring-websocket</artifactId>
  107. <scope>compile</scope>
  108. <optional>true</optional>
  109. </dependency>
  110. <dependency>
  111. <groupId>ch.qos.logback</groupId>
  112. <artifactId>logback-classic</artifactId>
  113. <version>1.1.2</version>
  114. <scope>test</scope>
  115. </dependency>
  116. <dependency>
  117. <groupId>commons-codec</groupId>
  118. <artifactId>commons-codec</artifactId>
  119. <version>1.10</version>
  120. <scope>test</scope>
  121. </dependency>
  122. <dependency>
  123. <groupId>junit</groupId>
  124. <artifactId>junit</artifactId>
  125. <version>4.11</version>
  126. <scope>test</scope>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.codehaus.groovy</groupId>
  130. <artifactId>groovy-all</artifactId>
  131. <version>2.3.8</version>
  132. <scope>test</scope>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.easytesting</groupId>
  136. <artifactId>fest-assert</artifactId>
  137. <version>1.4</version>
  138. <scope>test</scope>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.hsqldb</groupId>
  142. <artifactId>hsqldb</artifactId>
  143. <version>2.3.2</version>
  144. <scope>test</scope>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.mockito</groupId>
  148. <artifactId>mockito-core</artifactId>
  149. <version>1.10.19</version>
  150. <scope>test</scope>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.powermock</groupId>
  154. <artifactId>powermock-api-mockito</artifactId>
  155. <version>1.6.2</version>
  156. <scope>test</scope>
  157. <exclusions>
  158. <exclusion>
  159. <artifactId>mockito-all</artifactId>
  160. <groupId>org.mockito</groupId>
  161. </exclusion>
  162. </exclusions>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.powermock</groupId>
  166. <artifactId>powermock-api-support</artifactId>
  167. <version>1.6.2</version>
  168. <scope>test</scope>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.powermock</groupId>
  172. <artifactId>powermock-core</artifactId>
  173. <version>1.6.2</version>
  174. <scope>test</scope>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.powermock</groupId>
  178. <artifactId>powermock-module-junit4</artifactId>
  179. <version>1.6.2</version>
  180. <scope>test</scope>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.powermock</groupId>
  184. <artifactId>powermock-module-junit4-common</artifactId>
  185. <version>1.6.2</version>
  186. <scope>test</scope>
  187. </dependency>
  188. <dependency>
  189. <groupId>org.powermock</groupId>
  190. <artifactId>powermock-reflect</artifactId>
  191. <version>1.6.2</version>
  192. <scope>test</scope>
  193. </dependency>
  194. <dependency>
  195. <groupId>org.slf4j</groupId>
  196. <artifactId>jcl-over-slf4j</artifactId>
  197. <version>1.7.7</version>
  198. <scope>test</scope>
  199. </dependency>
  200. <dependency>
  201. <groupId>org.spockframework</groupId>
  202. <artifactId>spock-core</artifactId>
  203. <version>0.7-groovy-2.0</version>
  204. <scope>test</scope>
  205. <exclusions>
  206. <exclusion>
  207. <artifactId>junit-dep</artifactId>
  208. <groupId>junit</groupId>
  209. </exclusion>
  210. </exclusions>
  211. </dependency>
  212. <dependency>
  213. <groupId>org.spockframework</groupId>
  214. <artifactId>spock-spring</artifactId>
  215. <version>0.7-groovy-2.0</version>
  216. <scope>test</scope>
  217. <exclusions>
  218. <exclusion>
  219. <artifactId>junit-dep</artifactId>
  220. <groupId>junit</groupId>
  221. </exclusion>
  222. </exclusions>
  223. </dependency>
  224. <dependency>
  225. <groupId>org.springframework</groupId>
  226. <artifactId>spring-test</artifactId>
  227. <scope>test</scope>
  228. </dependency>
  229. </dependencies>
  230. <dependencyManagement>
  231. <dependencies>
  232. <dependency>
  233. <groupId>org.springframework</groupId>
  234. <artifactId>spring-framework-bom</artifactId>
  235. <version>4.1.6.RELEASE</version>
  236. <type>pom</type>
  237. <scope>import</scope>
  238. </dependency>
  239. </dependencies>
  240. </dependencyManagement>
  241. <build>
  242. <plugins>
  243. <plugin>
  244. <artifactId>maven-compiler-plugin</artifactId>
  245. <configuration>
  246. <source>1.7</source>
  247. <target>1.7</target>
  248. </configuration>
  249. </plugin>
  250. </plugins>
  251. </build>
  252. </project>