pom.xml 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>org.springframework.security</groupId>
  5. <artifactId>spring-security-parent</artifactId>
  6. <version>2.5.0-SNAPSHOT</version>
  7. </parent>
  8. <packaging>jar</packaging>
  9. <artifactId>spring-security-config</artifactId>
  10. <name>Spring Security - Namespace Configuration Module</name>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.springframework.security</groupId>
  14. <artifactId>spring-security-core</artifactId>
  15. <version>${project.version}</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>commons-logging</groupId>
  19. <artifactId>commons-logging</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.security</groupId>
  23. <artifactId>spring-security-core</artifactId>
  24. <version>${project.version}</version>
  25. <classifier>tests</classifier>
  26. <scope>test</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.security</groupId>
  30. <artifactId>spring-security-ldap</artifactId>
  31. <version>${project.version}</version>
  32. <scope>test</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework</groupId>
  36. <artifactId>org.springframework.jdbc</artifactId>
  37. <scope>test</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework</groupId>
  41. <artifactId>org.springframework.web</artifactId>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.directory.server</groupId>
  46. <artifactId>apacheds-core</artifactId>
  47. <version>1.0.2</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.apache.directory.server</groupId>
  51. <artifactId>apacheds-server-jndi</artifactId>
  52. <version>1.0.2</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.mina</groupId>
  56. <artifactId>mina-core</artifactId>
  57. <version>1.0.5</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.slf4j</groupId>
  61. <artifactId>slf4j-log4j12</artifactId>
  62. <version>1.4.3</version>
  63. <scope>test</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>hsqldb</groupId>
  67. <artifactId>hsqldb</artifactId>
  68. <scope>test</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>cglib</groupId>
  72. <artifactId>cglib-nodep</artifactId>
  73. <scope>test</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.tomcat</groupId>
  77. <artifactId>annotations-api</artifactId>
  78. <scope>test</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework</groupId>
  82. <artifactId>org.springframework.test</artifactId>
  83. <scope>test</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>javax.servlet</groupId>
  87. <artifactId>servlet-api</artifactId>
  88. </dependency>
  89. </dependencies>
  90. </project>