pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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-dms-xml</artifactId>
  6. <version>3.2.10.RELEASE</version>
  7. <name>spring-security-samples-dms-xml</name>
  8. <description>spring-security-samples-dms-xml</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. <dependencies>
  34. <dependency>
  35. <groupId>org.springframework.security</groupId>
  36. <artifactId>spring-security-acl</artifactId>
  37. <version>3.2.10.RELEASE</version>
  38. <scope>compile</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.security</groupId>
  42. <artifactId>spring-security-core</artifactId>
  43. <version>3.2.10.RELEASE</version>
  44. <scope>compile</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework</groupId>
  48. <artifactId>spring-beans</artifactId>
  49. <version>3.2.18.RELEASE</version>
  50. <scope>compile</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework</groupId>
  54. <artifactId>spring-jdbc</artifactId>
  55. <version>3.2.18.RELEASE</version>
  56. <scope>compile</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework</groupId>
  60. <artifactId>spring-tx</artifactId>
  61. <version>3.2.18.RELEASE</version>
  62. <scope>compile</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>commons-logging</groupId>
  66. <artifactId>commons-logging</artifactId>
  67. <version>1.1.1</version>
  68. <scope>compile</scope>
  69. <optional>true</optional>
  70. </dependency>
  71. <dependency>
  72. <groupId>net.sf.ehcache</groupId>
  73. <artifactId>ehcache-core</artifactId>
  74. <version>1.7.2</version>
  75. <scope>compile</scope>
  76. <optional>true</optional>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.hsqldb</groupId>
  80. <artifactId>hsqldb</artifactId>
  81. <version>2.3.1</version>
  82. <scope>runtime</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework.security</groupId>
  86. <artifactId>spring-security-config</artifactId>
  87. <version>3.2.10.RELEASE</version>
  88. <scope>runtime</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework</groupId>
  92. <artifactId>spring-context-support</artifactId>
  93. <version>3.2.18.RELEASE</version>
  94. <scope>runtime</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>ch.qos.logback</groupId>
  98. <artifactId>logback-classic</artifactId>
  99. <version>0.9.29</version>
  100. <scope>test</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>junit</groupId>
  104. <artifactId>junit</artifactId>
  105. <version>4.11</version>
  106. <scope>test</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.easytesting</groupId>
  110. <artifactId>fest-assert</artifactId>
  111. <version>1.4</version>
  112. <scope>test</scope>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.mockito</groupId>
  116. <artifactId>mockito-core</artifactId>
  117. <version>1.10.19</version>
  118. <scope>test</scope>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.slf4j</groupId>
  122. <artifactId>jcl-over-slf4j</artifactId>
  123. <version>1.7.5</version>
  124. <scope>test</scope>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.springframework</groupId>
  128. <artifactId>spring-context</artifactId>
  129. <version>3.2.18.RELEASE</version>
  130. <scope>test</scope>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.springframework</groupId>
  134. <artifactId>spring-test</artifactId>
  135. <version>3.2.18.RELEASE</version>
  136. <scope>test</scope>
  137. </dependency>
  138. </dependencies>
  139. <build>
  140. <plugins>
  141. <plugin>
  142. <artifactId>maven-compiler-plugin</artifactId>
  143. <configuration>
  144. <source>1.7</source>
  145. <target>1.7</target>
  146. </configuration>
  147. </plugin>
  148. </plugins>
  149. </build>
  150. </project>