2
0

pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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-samples-xml-aspectj</artifactId>
  6. <version>5.0.0.BUILD-SNAPSHOT</version>
  7. <name>spring-security-samples-xml-aspectj</name>
  8. <description>spring-security-samples-xml-aspectj</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>org.springframework.security</groupId>
  52. <artifactId>spring-security-core</artifactId>
  53. <version>5.0.0.BUILD-SNAPSHOT</version>
  54. <scope>compile</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>commons-logging</groupId>
  58. <artifactId>commons-logging</artifactId>
  59. <version>1.2</version>
  60. <scope>compile</scope>
  61. <optional>true</optional>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.aspectj</groupId>
  65. <artifactId>aspectjrt</artifactId>
  66. <version>1.8.4</version>
  67. <scope>compile</scope>
  68. <optional>true</optional>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.security</groupId>
  72. <artifactId>spring-security-aspects</artifactId>
  73. <version>5.0.0.BUILD-SNAPSHOT</version>
  74. <scope>runtime</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.security</groupId>
  78. <artifactId>spring-security-config</artifactId>
  79. <version>5.0.0.BUILD-SNAPSHOT</version>
  80. <scope>runtime</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>ch.qos.logback</groupId>
  84. <artifactId>logback-classic</artifactId>
  85. <version>1.1.2</version>
  86. <scope>test</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>junit</groupId>
  90. <artifactId>junit</artifactId>
  91. <version>4.12</version>
  92. <scope>test</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.assertj</groupId>
  96. <artifactId>assertj-core</artifactId>
  97. <version>3.6.2</version>
  98. <scope>test</scope>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.mockito</groupId>
  102. <artifactId>mockito-core</artifactId>
  103. <version>1.10.19</version>
  104. <scope>test</scope>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.slf4j</groupId>
  108. <artifactId>jcl-over-slf4j</artifactId>
  109. <version>1.7.7</version>
  110. <scope>test</scope>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.springframework</groupId>
  114. <artifactId>spring-test</artifactId>
  115. <scope>test</scope>
  116. </dependency>
  117. </dependencies>
  118. <repositories>
  119. <repository>
  120. <id>spring-snapshot</id>
  121. <url>https://repo.spring.io/snapshot</url>
  122. </repository>
  123. </repositories>
  124. <build>
  125. <plugins>
  126. <plugin>
  127. <artifactId>maven-compiler-plugin</artifactId>
  128. <configuration>
  129. <source>1.8</source>
  130. <target>1.8</target>
  131. </configuration>
  132. </plugin>
  133. </plugins>
  134. </build>
  135. </project>