pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. <artifactId>spring-security-itest</artifactId>
  9. <name>Spring Security - Integration Tests</name>
  10. <packaging>pom</packaging>
  11. <version>2.5.0-SNAPSHOT</version>
  12. <modules>
  13. <module>web</module>
  14. <!-- module>webflow</module-->
  15. <module>context</module>
  16. </modules>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework</groupId>
  20. <artifactId>spring</artifactId>
  21. <version>2.5.6</version>
  22. <exclusions>
  23. <exclusion>
  24. <groupId>commons-logging</groupId>
  25. <artifactId>commons-logging</artifactId>
  26. </exclusion>
  27. </exclusions>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework</groupId>
  31. <artifactId>spring-test</artifactId>
  32. <version>2.5.6</version>
  33. <exclusions>
  34. <exclusion>
  35. <groupId>commons-logging</groupId>
  36. <artifactId>commons-logging</artifactId>
  37. </exclusion>
  38. </exclusions>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.security</groupId>
  42. <artifactId>spring-security-core</artifactId>
  43. <version>${project.version}</version>
  44. <exclusions>
  45. <exclusion>
  46. <groupId>org.springframework</groupId>
  47. <artifactId>org.springframework.core</artifactId>
  48. </exclusion>
  49. <exclusion>
  50. <groupId>org.springframework</groupId>
  51. <artifactId>org.springframework.context</artifactId>
  52. </exclusion>
  53. <exclusion>
  54. <groupId>org.springframework</groupId>
  55. <artifactId>org.springframework.aop</artifactId>
  56. </exclusion>
  57. <exclusion>
  58. <groupId>commons-logging</groupId>
  59. <artifactId>commons-logging</artifactId>
  60. </exclusion>
  61. </exclusions>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.security</groupId>
  65. <artifactId>spring-security-config</artifactId>
  66. <version>${project.version}</version>
  67. <exclusions>
  68. <exclusion>
  69. <groupId>org.springframework</groupId>
  70. <artifactId>spring-security-core</artifactId>
  71. </exclusion>
  72. </exclusions>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.directory.server</groupId>
  76. <artifactId>apacheds-core</artifactId>
  77. <version>1.0.2</version>
  78. <scope>runtime</scope>
  79. <exclusions>
  80. <exclusion>
  81. <groupId>commons-logging</groupId>
  82. <artifactId>commons-logging</artifactId>
  83. </exclusion>
  84. </exclusions>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.directory.server</groupId>
  88. <artifactId>apacheds-server-jndi</artifactId>
  89. <version>1.0.2</version>
  90. <scope>runtime</scope>
  91. <exclusions>
  92. <exclusion>
  93. <groupId>commons-logging</groupId>
  94. <artifactId>commons-logging</artifactId>
  95. </exclusion>
  96. </exclusions>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.springframework.ldap</groupId>
  100. <artifactId>spring-ldap-core</artifactId>
  101. <scope>runtime</scope>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.slf4j</groupId>
  105. <artifactId>slf4j-api</artifactId>
  106. <version>1.4.3</version>
  107. <scope>runtime</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.slf4j</groupId>
  111. <artifactId>slf4j-log4j12</artifactId>
  112. <version>1.4.3</version>
  113. <scope>runtime</scope>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.slf4j</groupId>
  117. <artifactId>jcl104-over-slf4j</artifactId>
  118. <version>1.4.3</version>
  119. <scope>runtime</scope>
  120. </dependency>
  121. <dependency>
  122. <groupId>log4j</groupId>
  123. <artifactId>log4j</artifactId>
  124. </dependency>
  125. </dependencies>
  126. </project>