pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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>4.1.5.RELEASE</version>
  7. <name>spring-security-samples-xml-aspectj</name>
  8. <description>spring-security-samples-xml-aspectj</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.14.RELEASE</version>
  39. <type>pom</type>
  40. <scope>import</scope>
  41. </dependency>
  42. </dependencies>
  43. </dependencyManagement>
  44. <dependencies>
  45. <dependency>
  46. <groupId>org.springframework.security</groupId>
  47. <artifactId>spring-security-core</artifactId>
  48. <version>4.1.5.RELEASE</version>
  49. <scope>compile</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>commons-logging</groupId>
  53. <artifactId>commons-logging</artifactId>
  54. <version>1.2</version>
  55. <scope>compile</scope>
  56. <optional>true</optional>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.aspectj</groupId>
  60. <artifactId>aspectjrt</artifactId>
  61. <version>1.8.4</version>
  62. <scope>compile</scope>
  63. <optional>true</optional>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.security</groupId>
  67. <artifactId>spring-security-aspects</artifactId>
  68. <version>4.1.5.RELEASE</version>
  69. <scope>runtime</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.security</groupId>
  73. <artifactId>spring-security-config</artifactId>
  74. <version>4.1.5.RELEASE</version>
  75. <scope>runtime</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>ch.qos.logback</groupId>
  79. <artifactId>logback-classic</artifactId>
  80. <version>1.1.2</version>
  81. <scope>test</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>junit</groupId>
  85. <artifactId>junit</artifactId>
  86. <version>4.12</version>
  87. <scope>test</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.assertj</groupId>
  91. <artifactId>assertj-core</artifactId>
  92. <version>2.2.0</version>
  93. <scope>test</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.mockito</groupId>
  97. <artifactId>mockito-core</artifactId>
  98. <version>1.10.19</version>
  99. <scope>test</scope>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.slf4j</groupId>
  103. <artifactId>jcl-over-slf4j</artifactId>
  104. <version>1.7.7</version>
  105. <scope>test</scope>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.springframework</groupId>
  109. <artifactId>spring-test</artifactId>
  110. <scope>test</scope>
  111. </dependency>
  112. </dependencies>
  113. <build>
  114. <plugins>
  115. <plugin>
  116. <artifactId>maven-compiler-plugin</artifactId>
  117. <configuration>
  118. <source>1.7</source>
  119. <target>1.7</target>
  120. </configuration>
  121. </plugin>
  122. </plugins>
  123. </build>
  124. </project>