pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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.3.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>commons-logging</groupId>
  45. <artifactId>commons-logging</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.security</groupId>
  49. <artifactId>spring-security-ldap</artifactId>
  50. <version>${project.version}</version>
  51. <scope>test</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework</groupId>
  55. <artifactId>spring-jdbc</artifactId>
  56. <scope>test</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework</groupId>
  60. <artifactId>spring-web</artifactId>
  61. <optional>true</optional>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.apache.directory.server</groupId>
  65. <artifactId>apacheds-core</artifactId>
  66. <version>1.5.5</version>
  67. <optional>true</optional>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.directory.server</groupId>
  71. <artifactId>apacheds-server-jndi</artifactId>
  72. <version>1.5.5</version>
  73. <optional>true</optional>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.slf4j</groupId>
  77. <artifactId>slf4j-log4j12</artifactId>
  78. <version>1.5.10</version>
  79. <scope>test</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>hsqldb</groupId>
  83. <artifactId>hsqldb</artifactId>
  84. <scope>test</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>cglib</groupId>
  88. <artifactId>cglib-nodep</artifactId>
  89. <scope>test</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>javax.annotation</groupId>
  93. <artifactId>jsr250-api</artifactId>
  94. <scope>test</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.springframework</groupId>
  98. <artifactId>spring-test</artifactId>
  99. <scope>test</scope>
  100. </dependency>
  101. <dependency>
  102. <groupId>javax.servlet</groupId>
  103. <artifactId>servlet-api</artifactId>
  104. </dependency>
  105. </dependencies>
  106. <build>
  107. <plugins>
  108. <plugin>
  109. <groupId>com.springsource.bundlor</groupId>
  110. <artifactId>com.springsource.bundlor.maven</artifactId>
  111. </plugin>
  112. </plugins>
  113. </build>
  114. </project>