pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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>3.0.5.CI-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>org.springframework.security</groupId>
  19. <artifactId>spring-security-web</artifactId>
  20. <version>${project.version}</version>
  21. <optional>true</optional>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.security</groupId>
  25. <artifactId>spring-security-core</artifactId>
  26. <version>${project.version}</version>
  27. <classifier>tests</classifier>
  28. <scope>test</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.security</groupId>
  32. <artifactId>spring-security-web</artifactId>
  33. <version>${project.version}</version>
  34. <classifier>tests</classifier>
  35. <scope>test</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.security</groupId>
  39. <artifactId>spring-security-openid</artifactId>
  40. <version>${project.version}</version>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.security</groupId>
  45. <artifactId>spring-security-ldap</artifactId>
  46. <version>${project.version}</version>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework</groupId>
  51. <artifactId>spring-jdbc</artifactId>
  52. <scope>test</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework</groupId>
  56. <artifactId>spring-web</artifactId>
  57. <optional>true</optional>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.directory.server</groupId>
  61. <artifactId>apacheds-core</artifactId>
  62. <version>1.5.5</version>
  63. <optional>true</optional>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.directory.server</groupId>
  67. <artifactId>apacheds-server-jndi</artifactId>
  68. <version>1.5.5</version>
  69. <optional>true</optional>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.slf4j</groupId>
  73. <artifactId>slf4j-log4j12</artifactId>
  74. <version>1.6.0</version>
  75. <scope>test</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>hsqldb</groupId>
  79. <artifactId>hsqldb</artifactId>
  80. <scope>test</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>cglib</groupId>
  84. <artifactId>cglib-nodep</artifactId>
  85. <scope>test</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>javax.annotation</groupId>
  89. <artifactId>jsr250-api</artifactId>
  90. <scope>test</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework</groupId>
  94. <artifactId>spring-test</artifactId>
  95. <scope>test</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>javax.servlet</groupId>
  99. <artifactId>servlet-api</artifactId>
  100. </dependency>
  101. </dependencies>
  102. <build>
  103. <plugins>
  104. <plugin>
  105. <groupId>com.springsource.bundlor</groupId>
  106. <artifactId>com.springsource.bundlor.maven</artifactId>
  107. </plugin>
  108. </plugins>
  109. </build>
  110. </project>