pom.xml 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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. <groupId>org.springframework.security</groupId>
  4. <artifactId>spring-security-itest</artifactId>
  5. <name>Spring Security - Integration Tests</name>
  6. <packaging>pom</packaging>
  7. <version>2.5.0-SNAPSHOT</version>
  8. <modules>
  9. <module>web</module>
  10. <!-- module>webflow</module-->
  11. <module>context</module>
  12. </modules>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework</groupId>
  16. <artifactId>spring</artifactId>
  17. <version>2.5.6</version>
  18. <exclusions>
  19. <exclusion>
  20. <groupId>commons-logging</groupId>
  21. <artifactId>commons-logging</artifactId>
  22. </exclusion>
  23. </exclusions>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework</groupId>
  27. <artifactId>spring-test</artifactId>
  28. <version>2.5.6</version>
  29. <exclusions>
  30. <exclusion>
  31. <groupId>commons-logging</groupId>
  32. <artifactId>commons-logging</artifactId>
  33. </exclusion>
  34. </exclusions>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.security</groupId>
  38. <artifactId>spring-security-core</artifactId>
  39. <version>${project.version}</version>
  40. <exclusions>
  41. <exclusion>
  42. <groupId>org.springframework</groupId>
  43. <artifactId>org.springframework.core</artifactId>
  44. </exclusion>
  45. <exclusion>
  46. <groupId>org.springframework</groupId>
  47. <artifactId>org.springframework.context</artifactId>
  48. </exclusion>
  49. <exclusion>
  50. <groupId>org.springframework</groupId>
  51. <artifactId>org.springframework.aop</artifactId>
  52. </exclusion>
  53. <exclusion>
  54. <groupId>commons-logging</groupId>
  55. <artifactId>commons-logging</artifactId>
  56. </exclusion>
  57. </exclusions>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.directory.server</groupId>
  61. <artifactId>apacheds-core</artifactId>
  62. <version>1.0.2</version>
  63. <scope>runtime</scope>
  64. <exclusions>
  65. <exclusion>
  66. <groupId>commons-logging</groupId>
  67. <artifactId>commons-logging</artifactId>
  68. </exclusion>
  69. </exclusions>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.directory.server</groupId>
  73. <artifactId>apacheds-server-jndi</artifactId>
  74. <version>1.0.2</version>
  75. <scope>runtime</scope>
  76. <exclusions>
  77. <exclusion>
  78. <groupId>commons-logging</groupId>
  79. <artifactId>commons-logging</artifactId>
  80. </exclusion>
  81. </exclusions>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.ldap</groupId>
  85. <artifactId>spring-ldap-core</artifactId>
  86. <version>1.3.0.RC1</version>
  87. <scope>runtime</scope>
  88. <exclusions>
  89. <exclusion>
  90. <groupId>org.springframework</groupId>
  91. <artifactId>spring-core</artifactId>
  92. </exclusion>
  93. <exclusion>
  94. <groupId>org.springframework</groupId>
  95. <artifactId>spring-beans</artifactId>
  96. </exclusion>
  97. <exclusion>
  98. <groupId>commons-logging</groupId>
  99. <artifactId>commons-logging</artifactId>
  100. </exclusion>
  101. </exclusions>
  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. <version>1.2.14</version>
  125. </dependency>
  126. </dependencies>
  127. <build>
  128. <plugins>
  129. <plugin>
  130. <groupId>org.apache.maven.plugins</groupId>
  131. <artifactId>maven-compiler-plugin</artifactId>
  132. <configuration>
  133. <source>1.5</source>
  134. <target>1.5</target>
  135. </configuration>
  136. </plugin>
  137. <plugin>
  138. <groupId>org.apache.maven.plugins</groupId>
  139. <artifactId>maven-jar-plugin</artifactId>
  140. <version>2.1</version>
  141. <executions>
  142. <execution>
  143. <goals>
  144. <goal>test-jar</goal>
  145. </goals>
  146. <phase>package</phase>
  147. </execution>
  148. </executions>
  149. </plugin>
  150. <plugin>
  151. <groupId>org.apache.maven.plugins</groupId>
  152. <artifactId>maven-surefire-plugin</artifactId>
  153. <version>2.4.2</version>
  154. <configuration>
  155. <includes>
  156. <include>**/*Tests.class</include>
  157. </includes>
  158. <excludes>
  159. <exclude>**/Abstract*</exclude>
  160. </excludes>
  161. <forkMode>once</forkMode>
  162. <systemProperties>
  163. <!-- The working directory for the embedded apache Ldap test server -->
  164. <property>
  165. <name>apacheDSWorkDir</name>
  166. <value>
  167. ${basedir}/target/apacheds-work
  168. </value>
  169. </property>
  170. </systemProperties>
  171. </configuration>
  172. </plugin>
  173. </plugins>
  174. </build>
  175. <properties>
  176. <jetty.version>6.1.11</jetty.version>
  177. </properties>
  178. </project>