pom.xml 7.2 KB

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