pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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-ldap-xml</artifactId>
  7. <version>4.0.0.CI-SNAPSHOT</version>
  8. <packaging>war</packaging>
  9. <name>spring-security-samples-ldap-xml</name>
  10. <description>spring-security-samples-ldap-xml</description>
  11. <url>http://spring.io/spring-security</url>
  12. <organization>
  13. <name>spring.io</name>
  14. <url>http://spring.io/</url>
  15. </organization>
  16. <licenses>
  17. <license>
  18. <name>The Apache Software License, Version 2.0</name>
  19. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  20. <distribution>repo</distribution>
  21. </license>
  22. </licenses>
  23. <developers>
  24. <developer>
  25. <id>rwinch</id>
  26. <name>Rob Winch</name>
  27. <email>rwinch@gopivotal.com</email>
  28. </developer>
  29. </developers>
  30. <scm>
  31. <connection>scm:git:git://github.com/spring-projects/spring-security</connection>
  32. <developerConnection>scm:git:git://github.com/spring-projects/spring-security</developerConnection>
  33. <url>https://github.com/spring-projects/spring-security</url>
  34. </scm>
  35. <build>
  36. <plugins>
  37. <plugin>
  38. <artifactId>maven-compiler-plugin</artifactId>
  39. <configuration>
  40. <source>1.7</source>
  41. <target>1.7</target>
  42. </configuration>
  43. </plugin>
  44. <plugin>
  45. <artifactId>maven-war-plugin</artifactId>
  46. <version>2.3</version>
  47. <configuration>
  48. <failOnMissingWebXml>false</failOnMissingWebXml>
  49. </configuration>
  50. </plugin>
  51. </plugins>
  52. </build>
  53. <repositories>
  54. <repository>
  55. <id>spring-snasphot</id>
  56. <url>https://repo.spring.io/snapshot</url>
  57. </repository>
  58. </repositories>
  59. <dependencies>
  60. <dependency>
  61. <groupId>org.springframework</groupId>
  62. <artifactId>spring-core</artifactId>
  63. <version>4.0.2.RELEASE</version>
  64. <scope>compile</scope>
  65. <exclusions>
  66. <exclusion>
  67. <artifactId>commons-logging</artifactId>
  68. <groupId>commons-logging</groupId>
  69. </exclusion>
  70. </exclusions>
  71. </dependency>
  72. <dependency>
  73. <groupId>commons-logging</groupId>
  74. <artifactId>commons-logging</artifactId>
  75. <version>1.1.1</version>
  76. <scope>compile</scope>
  77. <optional>true</optional>
  78. </dependency>
  79. <dependency>
  80. <groupId>ch.qos.logback</groupId>
  81. <artifactId>logback-classic</artifactId>
  82. <version>0.9.29</version>
  83. <scope>runtime</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.slf4j</groupId>
  87. <artifactId>jcl-over-slf4j</artifactId>
  88. <version>1.7.5</version>
  89. <scope>runtime</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.security</groupId>
  93. <artifactId>spring-security-config</artifactId>
  94. <version>4.0.0.CI-SNAPSHOT</version>
  95. <scope>runtime</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.springframework.security</groupId>
  99. <artifactId>spring-security-ldap</artifactId>
  100. <version>4.0.0.CI-SNAPSHOT</version>
  101. <scope>runtime</scope>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.springframework.security</groupId>
  105. <artifactId>spring-security-web</artifactId>
  106. <version>4.0.0.CI-SNAPSHOT</version>
  107. <scope>runtime</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>junit</groupId>
  111. <artifactId>junit</artifactId>
  112. <version>4.11</version>
  113. <scope>test</scope>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.easytesting</groupId>
  117. <artifactId>fest-assert</artifactId>
  118. <version>1.4</version>
  119. <scope>test</scope>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.mockito</groupId>
  123. <artifactId>mockito-core</artifactId>
  124. <version>1.9.5</version>
  125. <scope>test</scope>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.springframework</groupId>
  129. <artifactId>spring-test</artifactId>
  130. <version>4.0.2.RELEASE</version>
  131. <scope>test</scope>
  132. </dependency>
  133. </dependencies>
  134. <properties>
  135. <m2eclipse.wtp.contextRoot>/sample</m2eclipse.wtp.contextRoot>
  136. </properties>
  137. </project>