pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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-acl</artifactId>
  6. <version>5.0.0.BUILD-SNAPSHOT</version>
  7. <name>spring-security-acl</name>
  8. <description>spring-security-acl</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@pivotal.io</email>
  26. </developer>
  27. <developer>
  28. <id>jgrandja</id>
  29. <name>Joe Grandja</name>
  30. <email>jgrandja@pivotal.io</email>
  31. </developer>
  32. </developers>
  33. <scm>
  34. <connection>scm:git:git://github.com/spring-projects/spring-security</connection>
  35. <developerConnection>scm:git:git://github.com/spring-projects/spring-security</developerConnection>
  36. <url>https://github.com/spring-projects/spring-security</url>
  37. </scm>
  38. <dependencyManagement>
  39. <dependencies>
  40. <dependency>
  41. <groupId>org.springframework</groupId>
  42. <artifactId>spring-framework-bom</artifactId>
  43. <version>4.3.5.RELEASE</version>
  44. <type>pom</type>
  45. <scope>import</scope>
  46. </dependency>
  47. </dependencies>
  48. </dependencyManagement>
  49. <dependencies>
  50. <dependency>
  51. <groupId>aopalliance</groupId>
  52. <artifactId>aopalliance</artifactId>
  53. <version>1.0</version>
  54. <scope>compile</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.security</groupId>
  58. <artifactId>spring-security-core</artifactId>
  59. <version>5.0.0.BUILD-SNAPSHOT</version>
  60. <scope>compile</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework</groupId>
  64. <artifactId>spring-aop</artifactId>
  65. <scope>compile</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework</groupId>
  69. <artifactId>spring-context</artifactId>
  70. <scope>compile</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework</groupId>
  74. <artifactId>spring-core</artifactId>
  75. <scope>compile</scope>
  76. <exclusions>
  77. <exclusion>
  78. <artifactId>commons-logging</artifactId>
  79. <groupId>commons-logging</groupId>
  80. </exclusion>
  81. </exclusions>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework</groupId>
  85. <artifactId>spring-jdbc</artifactId>
  86. <scope>compile</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework</groupId>
  90. <artifactId>spring-tx</artifactId>
  91. <scope>compile</scope>
  92. </dependency>
  93. <dependency>
  94. <groupId>commons-logging</groupId>
  95. <artifactId>commons-logging</artifactId>
  96. <version>1.2</version>
  97. <scope>compile</scope>
  98. <optional>true</optional>
  99. </dependency>
  100. <dependency>
  101. <groupId>net.sf.ehcache</groupId>
  102. <artifactId>ehcache</artifactId>
  103. <version>2.9.0</version>
  104. <scope>compile</scope>
  105. <optional>true</optional>
  106. </dependency>
  107. <dependency>
  108. <groupId>ch.qos.logback</groupId>
  109. <artifactId>logback-classic</artifactId>
  110. <version>1.1.2</version>
  111. <scope>test</scope>
  112. </dependency>
  113. <dependency>
  114. <groupId>junit</groupId>
  115. <artifactId>junit</artifactId>
  116. <version>4.12</version>
  117. <scope>test</scope>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.assertj</groupId>
  121. <artifactId>assertj-core</artifactId>
  122. <version>3.6.2</version>
  123. <scope>test</scope>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.hsqldb</groupId>
  127. <artifactId>hsqldb</artifactId>
  128. <version>2.3.2</version>
  129. <scope>test</scope>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.mockito</groupId>
  133. <artifactId>mockito-core</artifactId>
  134. <version>1.10.19</version>
  135. <scope>test</scope>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.slf4j</groupId>
  139. <artifactId>jcl-over-slf4j</artifactId>
  140. <version>1.7.7</version>
  141. <scope>test</scope>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.springframework</groupId>
  145. <artifactId>spring-beans</artifactId>
  146. <scope>test</scope>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.springframework</groupId>
  150. <artifactId>spring-context-support</artifactId>
  151. <scope>test</scope>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.springframework</groupId>
  155. <artifactId>spring-test</artifactId>
  156. <scope>test</scope>
  157. </dependency>
  158. </dependencies>
  159. <repositories>
  160. <repository>
  161. <id>spring-snapshot</id>
  162. <url>https://repo.spring.io/snapshot</url>
  163. </repository>
  164. </repositories>
  165. <build>
  166. <plugins>
  167. <plugin>
  168. <artifactId>maven-compiler-plugin</artifactId>
  169. <configuration>
  170. <source>1.8</source>
  171. <target>1.8</target>
  172. </configuration>
  173. </plugin>
  174. </plugins>
  175. </build>
  176. </project>