pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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-jetty</artifactId>
  47. <version>${jetty.version}</version>
  48. <scope>test</scope>
  49. </dependency>
  50. <!--
  51. <dependency>
  52. <groupId>org.mortbay.jetty</groupId>
  53. <artifactId>jsp-api-2.1</artifactId>
  54. <version>${jetty.version}</version>
  55. </dependency>
  56. -->
  57. </dependencies>
  58. </project>