pom.xml 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  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. <!--
  4. <parent>
  5. <groupId>org.springframework.security</groupId>
  6. <artifactId>spring-security-parent</artifactId>
  7. <version>2.0.3-SNAPSHOT</version>
  8. </parent>
  9. -->
  10. <groupId>org.springframework.security</groupId>
  11. <artifactId>spring-security-itest</artifactId>
  12. <name>Spring Security - Integration Tests</name>
  13. <packaging>pom</packaging>
  14. <version>2.0.4-SNAPSHOT</version>
  15. <modules>
  16. <module>web</module>
  17. <!-- module>webflow</module-->
  18. <module>misc</module>
  19. </modules>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.testng</groupId>
  23. <artifactId>testng</artifactId>
  24. <version>5.8</version>
  25. <scope>test</scope>
  26. <classifier>jdk15</classifier>
  27. </dependency>
  28. <!--
  29. <dependency>
  30. <groupId>junit</groupId>
  31. <artifactId>junit</artifactId>
  32. <version>4.4</version>
  33. <scope>test</scope>
  34. </dependency>
  35. -->
  36. <dependency>
  37. <groupId>org.springframework</groupId>
  38. <artifactId>spring</artifactId>
  39. <version>2.5.5</version>
  40. <exclusions>
  41. <exclusion>
  42. <groupId>commons-logging</groupId>
  43. <artifactId>commons-logging</artifactId>
  44. </exclusion>
  45. </exclusions>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.security</groupId>
  49. <artifactId>spring-security-core</artifactId>
  50. <version>${project.version}</version>
  51. <exclusions>
  52. <exclusion>
  53. <groupId>org.springframework</groupId>
  54. <artifactId>spring-core</artifactId>
  55. </exclusion>
  56. <exclusion>
  57. <groupId>org.springframework</groupId>
  58. <artifactId>spring-context</artifactId>
  59. </exclusion>
  60. <exclusion>
  61. <groupId>org.springframework</groupId>
  62. <artifactId>spring-aop</artifactId>
  63. </exclusion>
  64. <exclusion>
  65. <groupId>org.springframework</groupId>
  66. <artifactId>spring-support</artifactId>
  67. </exclusion>
  68. <exclusion>
  69. <groupId>commons-logging</groupId>
  70. <artifactId>commons-logging</artifactId>
  71. </exclusion>
  72. </exclusions>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.security</groupId>
  76. <artifactId>spring-security-core-tiger</artifactId>
  77. <version>${project.version}</version>
  78. <exclusions>
  79. <exclusion>
  80. <groupId>commons-logging</groupId>
  81. <artifactId>commons-logging</artifactId>
  82. </exclusion>
  83. </exclusions>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.slf4j</groupId>
  87. <artifactId>slf4j-api</artifactId>
  88. <version>1.4.3</version>
  89. <scope>runtime</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.apache.directory.server</groupId>
  93. <artifactId>apacheds-core</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.apache.directory.server</groupId>
  105. <artifactId>apacheds-server-jndi</artifactId>
  106. <version>1.0.2</version>
  107. <scope>runtime</scope>
  108. <exclusions>
  109. <exclusion>
  110. <groupId>commons-logging</groupId>
  111. <artifactId>commons-logging</artifactId>
  112. </exclusion>
  113. </exclusions>
  114. </dependency>
  115. <dependency>
  116. <groupId>jwebunit</groupId>
  117. <artifactId>jwebunit</artifactId>
  118. <version>1.2</version>
  119. <scope>test</scope>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.mortbay.jetty</groupId>
  123. <artifactId>jetty</artifactId>
  124. <version>${jetty.version}</version>
  125. <scope>test</scope>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.mortbay.jetty</groupId>
  129. <artifactId>jetty-naming</artifactId>
  130. <version>${jetty.version}</version>
  131. <scope>test</scope>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.mortbay.jetty</groupId>
  135. <artifactId>jetty-plus</artifactId>
  136. <version>${jetty.version}</version>
  137. <scope>test</scope>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.mortbay.jetty</groupId>
  141. <artifactId>jsp-2.1</artifactId>
  142. <version>${jetty.version}</version>
  143. <scope>test</scope>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.mortbay.jetty</groupId>
  147. <artifactId>jsp-api-2.1</artifactId>
  148. <version>${jetty.version}</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.springframework.ldap</groupId>
  152. <artifactId>spring-ldap</artifactId>
  153. <version>1.2.1</version>
  154. <scope>runtime</scope>
  155. <exclusions>
  156. <exclusion>
  157. <groupId>org.springframework</groupId>
  158. <artifactId>spring-core</artifactId>
  159. </exclusion>
  160. <exclusion>
  161. <groupId>org.springframework</groupId>
  162. <artifactId>spring-beans</artifactId>
  163. </exclusion>
  164. <exclusion>
  165. <groupId>commons-logging</groupId>
  166. <artifactId>commons-logging</artifactId>
  167. </exclusion>
  168. </exclusions>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.slf4j</groupId>
  172. <artifactId>slf4j-log4j12</artifactId>
  173. <version>1.4.3</version>
  174. <scope>runtime</scope>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.slf4j</groupId>
  178. <artifactId>jcl104-over-slf4j</artifactId>
  179. <version>1.4.3</version>
  180. <scope>runtime</scope>
  181. </dependency>
  182. <dependency>
  183. <groupId>log4j</groupId>
  184. <artifactId>log4j</artifactId>
  185. <version>1.2.13</version>
  186. <scope>runtime</scope>
  187. </dependency>
  188. </dependencies>
  189. <build>
  190. <plugins>
  191. <plugin>
  192. <groupId>org.apache.maven.plugins</groupId>
  193. <artifactId>maven-compiler-plugin</artifactId>
  194. <configuration>
  195. <source>1.5</source>
  196. <target>1.5</target>
  197. </configuration>
  198. </plugin>
  199. <plugin>
  200. <groupId>org.apache.maven.plugins</groupId>
  201. <artifactId>maven-jar-plugin</artifactId>
  202. <version>2.1</version>
  203. <executions>
  204. <execution>
  205. <goals>
  206. <goal>test-jar</goal>
  207. </goals>
  208. <phase>package</phase>
  209. </execution>
  210. </executions>
  211. </plugin>
  212. <plugin>
  213. <groupId>org.apache.maven.plugins</groupId>
  214. <artifactId>maven-surefire-plugin</artifactId>
  215. <version>2.4.2</version>
  216. <configuration>
  217. <includes>
  218. <include>**/*Tests.class</include>
  219. </includes>
  220. <excludes>
  221. <exclude>**/Abstract*</exclude>
  222. </excludes>
  223. <forkMode>once</forkMode>
  224. <systemProperties>
  225. <!-- The working directory for the embedded apache Ldap test server -->
  226. <property>
  227. <name>apacheDSWorkDir</name>
  228. <value>
  229. ${basedir}/target/apacheds-work
  230. </value>
  231. </property>
  232. </systemProperties>
  233. </configuration>
  234. </plugin>
  235. </plugins>
  236. </build>
  237. <properties>
  238. <jetty.version>6.1.11</jetty.version>
  239. </properties>
  240. </project>