pom.xml 4.8 KB

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