pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.springframework.security</groupId>
  6. <artifactId>spring-security-itest</artifactId>
  7. <version>3.0.3.CI-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>spring-security-itest-web</artifactId>
  10. <name>Spring Security - Web Integration Tests</name>
  11. <packaging>war</packaging>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.testng</groupId>
  15. <artifactId>testng</artifactId>
  16. <version>5.11</version>
  17. <scope>test</scope>
  18. <classifier>jdk15</classifier>
  19. </dependency>
  20. <dependency>
  21. <groupId>net.sourceforge.jwebunit</groupId>
  22. <artifactId>jwebunit-htmlunit-plugin</artifactId>
  23. <version>2.2</version>
  24. <scope>test</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>javax.servlet</groupId>
  28. <artifactId>servlet-api</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework</groupId>
  32. <artifactId>spring-webmvc</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.mortbay.jetty</groupId>
  36. <artifactId>jetty</artifactId>
  37. <version>${jetty.version}</version>
  38. <scope>test</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.mortbay.jetty</groupId>
  42. <artifactId>jetty-naming</artifactId>
  43. <version>${jetty.version}</version>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.mortbay.jetty</groupId>
  48. <artifactId>jetty-plus</artifactId>
  49. <version>${jetty.version}</version>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.mortbay.jetty</groupId>
  54. <artifactId>jsp-2.1-jetty</artifactId>
  55. <version>${jetty.version}</version>
  56. <scope>test</scope>
  57. </dependency>
  58. </dependencies>
  59. </project>