pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>org.springframework.security</groupId>
  6. <artifactId>spring-security-samples-aspectj-xml</artifactId>
  7. <version>3.2.0.CI-SNAPSHOT</version>
  8. <name>spring-security-samples-aspectj-xml</name>
  9. <description>spring-security-samples-aspectj-xml</description>
  10. <url>http://springsource.org/spring-security</url>
  11. <organization>
  12. <name>SpringSource</name>
  13. <url>http://springsource.org/</url>
  14. </organization>
  15. <licenses>
  16. <license>
  17. <name>The Apache Software License, Version 2.0</name>
  18. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  19. <distribution>repo</distribution>
  20. </license>
  21. </licenses>
  22. <developers>
  23. <developer>
  24. <id>rwinch</id>
  25. <name>Rob Winch</name>
  26. <email>rwinch@vmware.com</email>
  27. </developer>
  28. </developers>
  29. <scm>
  30. <connection>scm:git:git://github.com/SpringSource/spring-security</connection>
  31. <developerConnection>scm:git:git://github.com/SpringSource/spring-security</developerConnection>
  32. <url>https://github.com/SpringSource/spring-security</url>
  33. </scm>
  34. <dependencies>
  35. <dependency>
  36. <groupId>org.springframework.security</groupId>
  37. <artifactId>spring-security-core</artifactId>
  38. <version>3.2.0.CI-SNAPSHOT</version>
  39. <scope>compile</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework</groupId>
  43. <artifactId>spring-core</artifactId>
  44. <version>3.2.3.RELEASE</version>
  45. <scope>compile</scope>
  46. <exclusions>
  47. <exclusion>
  48. <artifactId>commons-logging</artifactId>
  49. <groupId>commons-logging</groupId>
  50. </exclusion>
  51. </exclusions>
  52. </dependency>
  53. <dependency>
  54. <groupId>commons-logging</groupId>
  55. <artifactId>commons-logging</artifactId>
  56. <version>1.1.1</version>
  57. <scope>compile</scope>
  58. <optional>true</optional>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.aspectj</groupId>
  62. <artifactId>aspectjrt</artifactId>
  63. <version>1.6.10</version>
  64. <scope>compile</scope>
  65. <optional>true</optional>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.security</groupId>
  69. <artifactId>spring-security-aspects</artifactId>
  70. <version>3.2.0.CI-SNAPSHOT</version>
  71. <scope>runtime</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.security</groupId>
  75. <artifactId>spring-security-config</artifactId>
  76. <version>3.2.0.CI-SNAPSHOT</version>
  77. <scope>runtime</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>ch.qos.logback</groupId>
  81. <artifactId>logback-classic</artifactId>
  82. <version>0.9.29</version>
  83. <scope>test</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>junit</groupId>
  87. <artifactId>junit</artifactId>
  88. <version>4.7</version>
  89. <scope>test</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.easytesting</groupId>
  93. <artifactId>fest-assert</artifactId>
  94. <version>1.4</version>
  95. <scope>test</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.mockito</groupId>
  99. <artifactId>mockito-core</artifactId>
  100. <version>1.8.5</version>
  101. <scope>test</scope>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.slf4j</groupId>
  105. <artifactId>jcl-over-slf4j</artifactId>
  106. <version>1.7.5</version>
  107. <scope>test</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.springframework</groupId>
  111. <artifactId>spring-test</artifactId>
  112. <version>3.2.3.RELEASE</version>
  113. <scope>test</scope>
  114. </dependency>
  115. </dependencies>
  116. </project>