pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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>2.5.0-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.8</version>
  17. <scope>test</scope>
  18. <classifier>jdk15</classifier>
  19. </dependency>
  20. <dependency>
  21. <groupId>jwebunit</groupId>
  22. <artifactId>jwebunit</artifactId>
  23. <version>1.2</version>
  24. <scope>test</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.mortbay.jetty</groupId>
  28. <artifactId>jetty</artifactId>
  29. <version>${jetty.version}</version>
  30. <scope>test</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.mortbay.jetty</groupId>
  34. <artifactId>jetty-naming</artifactId>
  35. <version>${jetty.version}</version>
  36. <scope>test</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.mortbay.jetty</groupId>
  40. <artifactId>jetty-plus</artifactId>
  41. <version>${jetty.version}</version>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.mortbay.jetty</groupId>
  46. <artifactId>jsp-2.1</artifactId>
  47. <version>${jetty.version}</version>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.mortbay.jetty</groupId>
  52. <artifactId>jsp-api-2.1</artifactId>
  53. <version>${jetty.version}</version>
  54. </dependency>
  55. </dependencies>
  56. </project>