pom.xml 7.3 KB

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