pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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>@pomVersion@</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.security</groupId>
  32. <artifactId>spring-security-taglibs</artifactId>
  33. <version>${project.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework</groupId>
  37. <artifactId>spring-webmvc</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.mortbay.jetty</groupId>
  41. <artifactId>jetty</artifactId>
  42. <version>${jetty.version}</version>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.mortbay.jetty</groupId>
  47. <artifactId>jetty-naming</artifactId>
  48. <version>${jetty.version}</version>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.mortbay.jetty</groupId>
  53. <artifactId>jetty-plus</artifactId>
  54. <version>${jetty.version}</version>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.mortbay.jetty</groupId>
  59. <artifactId>jsp-2.1-jetty</artifactId>
  60. <version>${jetty.version}</version>
  61. <scope>test</scope>
  62. </dependency>
  63. </dependencies>
  64. </project>