pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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-aspects</artifactId>
  6. <version>4.0.3.RELEASE</version>
  7. <name>spring-security-aspects</name>
  8. <description>spring-security-aspects</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. <dependencies>
  34. <dependency>
  35. <groupId>org.springframework.security</groupId>
  36. <artifactId>spring-security-core</artifactId>
  37. <version>4.0.3.RELEASE</version>
  38. <scope>compile</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework</groupId>
  42. <artifactId>spring-beans</artifactId>
  43. <scope>compile</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework</groupId>
  47. <artifactId>spring-context</artifactId>
  48. <scope>compile</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework</groupId>
  52. <artifactId>spring-core</artifactId>
  53. <scope>compile</scope>
  54. <exclusions>
  55. <exclusion>
  56. <artifactId>commons-logging</artifactId>
  57. <groupId>commons-logging</groupId>
  58. </exclusion>
  59. </exclusions>
  60. </dependency>
  61. <dependency>
  62. <groupId>commons-logging</groupId>
  63. <artifactId>commons-logging</artifactId>
  64. <version>1.2</version>
  65. <scope>compile</scope>
  66. <optional>true</optional>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.aspectj</groupId>
  70. <artifactId>aspectjrt</artifactId>
  71. <version>1.8.4</version>
  72. <scope>compile</scope>
  73. <optional>true</optional>
  74. </dependency>
  75. <dependency>
  76. <groupId>aopalliance</groupId>
  77. <artifactId>aopalliance</artifactId>
  78. <version>1.0</version>
  79. <scope>test</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>ch.qos.logback</groupId>
  83. <artifactId>logback-classic</artifactId>
  84. <version>1.1.2</version>
  85. <scope>test</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>junit</groupId>
  89. <artifactId>junit</artifactId>
  90. <version>4.11</version>
  91. <scope>test</scope>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.easytesting</groupId>
  95. <artifactId>fest-assert</artifactId>
  96. <version>1.4</version>
  97. <scope>test</scope>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.mockito</groupId>
  101. <artifactId>mockito-core</artifactId>
  102. <version>1.10.19</version>
  103. <scope>test</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.slf4j</groupId>
  107. <artifactId>jcl-over-slf4j</artifactId>
  108. <version>1.7.7</version>
  109. <scope>test</scope>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.springframework</groupId>
  113. <artifactId>spring-aop</artifactId>
  114. <scope>test</scope>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.springframework</groupId>
  118. <artifactId>spring-test</artifactId>
  119. <scope>test</scope>
  120. </dependency>
  121. </dependencies>
  122. <dependencyManagement>
  123. <dependencies>
  124. <dependency>
  125. <groupId>org.springframework</groupId>
  126. <artifactId>spring-framework-bom</artifactId>
  127. <version>4.2.2.RELEASE</version>
  128. <type>pom</type>
  129. <scope>import</scope>
  130. </dependency>
  131. </dependencies>
  132. </dependencyManagement>
  133. <build>
  134. <plugins>
  135. <plugin>
  136. <artifactId>maven-compiler-plugin</artifactId>
  137. <configuration>
  138. <source>1.7</source>
  139. <target>1.7</target>
  140. </configuration>
  141. </plugin>
  142. </plugins>
  143. </build>
  144. </project>