pom.xml 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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.apache.directory.server</groupId>
  65. <artifactId>apacheds-core</artifactId>
  66. <version>1.0.2</version>
  67. <scope>runtime</scope>
  68. <exclusions>
  69. <exclusion>
  70. <groupId>commons-logging</groupId>
  71. <artifactId>commons-logging</artifactId>
  72. </exclusion>
  73. </exclusions>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.directory.server</groupId>
  77. <artifactId>apacheds-server-jndi</artifactId>
  78. <version>1.0.2</version>
  79. <scope>runtime</scope>
  80. <exclusions>
  81. <exclusion>
  82. <groupId>commons-logging</groupId>
  83. <artifactId>commons-logging</artifactId>
  84. </exclusion>
  85. </exclusions>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework.ldap</groupId>
  89. <artifactId>spring-ldap-core</artifactId>
  90. <scope>runtime</scope>
  91. <exclusions>
  92. <exclusion>
  93. <groupId>org.springframework</groupId>
  94. <artifactId>org.springframework.core</artifactId>
  95. </exclusion>
  96. <exclusion>
  97. <groupId>org.springframework</groupId>
  98. <artifactId>spring-beans</artifactId>
  99. </exclusion>
  100. <exclusion>
  101. <groupId>commons-logging</groupId>
  102. <artifactId>commons-logging</artifactId>
  103. </exclusion>
  104. </exclusions>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.slf4j</groupId>
  108. <artifactId>slf4j-api</artifactId>
  109. <version>1.4.3</version>
  110. <scope>runtime</scope>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.slf4j</groupId>
  114. <artifactId>slf4j-log4j12</artifactId>
  115. <version>1.4.3</version>
  116. <scope>runtime</scope>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.slf4j</groupId>
  120. <artifactId>jcl104-over-slf4j</artifactId>
  121. <version>1.4.3</version>
  122. <scope>runtime</scope>
  123. </dependency>
  124. <dependency>
  125. <groupId>log4j</groupId>
  126. <artifactId>log4j</artifactId>
  127. </dependency>
  128. </dependencies>
  129. <build>
  130. <plugins>
  131. <plugin>
  132. <groupId>org.apache.maven.plugins</groupId>
  133. <artifactId>maven-compiler-plugin</artifactId>
  134. <configuration>
  135. <source>1.5</source>
  136. <target>1.5</target>
  137. </configuration>
  138. </plugin>
  139. <plugin>
  140. <groupId>org.apache.maven.plugins</groupId>
  141. <artifactId>maven-jar-plugin</artifactId>
  142. <version>2.1</version>
  143. <executions>
  144. <execution>
  145. <goals>
  146. <goal>test-jar</goal>
  147. </goals>
  148. <phase>package</phase>
  149. </execution>
  150. </executions>
  151. </plugin>
  152. <plugin>
  153. <groupId>org.apache.maven.plugins</groupId>
  154. <artifactId>maven-surefire-plugin</artifactId>
  155. <version>2.4.2</version>
  156. <configuration>
  157. <includes>
  158. <include>**/*Tests.class</include>
  159. </includes>
  160. <excludes>
  161. <exclude>**/Abstract*</exclude>
  162. </excludes>
  163. <forkMode>once</forkMode>
  164. <systemProperties>
  165. <!-- The working directory for the embedded apache Ldap test server -->
  166. <property>
  167. <name>apacheDSWorkDir</name>
  168. <value>
  169. ${basedir}/target/apacheds-work
  170. </value>
  171. </property>
  172. </systemProperties>
  173. </configuration>
  174. </plugin>
  175. </plugins>
  176. </build>
  177. <properties>
  178. <jetty.version>6.1.11</jetty.version>
  179. </properties>
  180. </project>