pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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.0.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.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.springframework</groupId>
  28. <artifactId>spring-webmvc</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.mortbay.jetty</groupId>
  32. <artifactId>jetty</artifactId>
  33. <version>${jetty.version}</version>
  34. <scope>test</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.mortbay.jetty</groupId>
  38. <artifactId>jetty-naming</artifactId>
  39. <version>${jetty.version}</version>
  40. <scope>test</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.mortbay.jetty</groupId>
  44. <artifactId>jetty-plus</artifactId>
  45. <version>${jetty.version}</version>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.mortbay.jetty</groupId>
  50. <artifactId>jsp-2.1-jetty</artifactId>
  51. <version>${jetty.version}</version>
  52. <scope>test</scope>
  53. </dependency>
  54. </dependencies>
  55. </project>