pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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>itest-context</artifactId>
  6. <version>4.2.13.RELEASE</version>
  7. <name>itest-context</name>
  8. <description>itest-context</description>
  9. <url>https://spring.io/spring-security</url>
  10. <organization>
  11. <name>spring.io</name>
  12. <url>https://spring.io/</url>
  13. </organization>
  14. <licenses>
  15. <license>
  16. <name>The Apache Software License, Version 2.0</name>
  17. <url>https://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. <dependencyManagement>
  34. <dependencies>
  35. <dependency>
  36. <groupId>org.springframework</groupId>
  37. <artifactId>spring-framework-bom</artifactId>
  38. <version>4.3.23.RELEASE</version>
  39. <type>pom</type>
  40. <scope>import</scope>
  41. </dependency>
  42. </dependencies>
  43. </dependencyManagement>
  44. <dependencies>
  45. <dependency>
  46. <groupId>aopalliance</groupId>
  47. <artifactId>aopalliance</artifactId>
  48. <version>1.0</version>
  49. <scope>compile</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.python</groupId>
  53. <artifactId>jython</artifactId>
  54. <version>2.5.0</version>
  55. <scope>compile</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.security</groupId>
  59. <artifactId>spring-security-core</artifactId>
  60. <version>4.2.13.RELEASE</version>
  61. <scope>compile</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework</groupId>
  65. <artifactId>spring-aop</artifactId>
  66. <scope>compile</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework</groupId>
  70. <artifactId>spring-beans</artifactId>
  71. <scope>compile</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework</groupId>
  75. <artifactId>spring-context</artifactId>
  76. <scope>compile</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework</groupId>
  80. <artifactId>spring-tx</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>ch.qos.logback</groupId>
  92. <artifactId>logback-classic</artifactId>
  93. <version>1.1.11</version>
  94. <scope>test</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>javax.servlet</groupId>
  98. <artifactId>javax.servlet-api</artifactId>
  99. <version>3.1.0</version>
  100. <scope>test</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>junit</groupId>
  104. <artifactId>junit</artifactId>
  105. <version>4.12</version>
  106. <scope>test</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.aspectj</groupId>
  110. <artifactId>aspectjweaver</artifactId>
  111. <version>1.8.14</version>
  112. <scope>test</scope>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.assertj</groupId>
  116. <artifactId>assertj-core</artifactId>
  117. <version>2.2.0</version>
  118. <scope>test</scope>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.mockito</groupId>
  122. <artifactId>mockito-core</artifactId>
  123. <version>1.10.19</version>
  124. <scope>test</scope>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.slf4j</groupId>
  128. <artifactId>jcl-over-slf4j</artifactId>
  129. <version>1.7.25</version>
  130. <scope>test</scope>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.springframework.security</groupId>
  134. <artifactId>spring-security-config</artifactId>
  135. <version>4.2.13.RELEASE</version>
  136. <scope>test</scope>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.springframework.security</groupId>
  140. <artifactId>spring-security-web</artifactId>
  141. <version>4.2.13.RELEASE</version>
  142. <scope>test</scope>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.springframework</groupId>
  146. <artifactId>spring-test</artifactId>
  147. <scope>test</scope>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.springframework</groupId>
  151. <artifactId>spring-web</artifactId>
  152. <scope>test</scope>
  153. </dependency>
  154. </dependencies>
  155. <build>
  156. <plugins>
  157. <plugin>
  158. <artifactId>maven-compiler-plugin</artifactId>
  159. <configuration>
  160. <source>1.7</source>
  161. <target>1.7</target>
  162. </configuration>
  163. </plugin>
  164. </plugins>
  165. </build>
  166. </project>