pom.xml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.security</groupId>
  7. <artifactId>spring-security-itest</artifactId>
  8. <version>2.0.9.CI-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>spring-security-itest-web</artifactId>
  11. <name>Spring Security - Web Integration Tests</name>
  12. <packaging>war</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.testng</groupId>
  16. <artifactId>testng</artifactId>
  17. <version>5.8</version>
  18. <scope>test</scope>
  19. <classifier>jdk15</classifier>
  20. </dependency>
  21. <dependency>
  22. <groupId>jwebunit</groupId>
  23. <artifactId>jwebunit</artifactId>
  24. <version>1.2</version>
  25. <scope>test</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.mortbay.jetty</groupId>
  29. <artifactId>jetty</artifactId>
  30. <version>${jetty.version}</version>
  31. <scope>test</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.mortbay.jetty</groupId>
  35. <artifactId>jetty-naming</artifactId>
  36. <version>${jetty.version}</version>
  37. <scope>test</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.mortbay.jetty</groupId>
  41. <artifactId>jetty-plus</artifactId>
  42. <version>${jetty.version}</version>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.mortbay.jetty</groupId>
  47. <artifactId>jsp-2.1</artifactId>
  48. <version>${jetty.version}</version>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.mortbay.jetty</groupId>
  53. <artifactId>jsp-api-2.1</artifactId>
  54. <version>${jetty.version}</version>
  55. </dependency>
  56. <!--
  57. <dependency>
  58. <groupId>javax.servlet</groupId>
  59. <artifactId>jstl</artifactId>
  60. <scope>runtime</scope>
  61. <version>1.1.2</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>taglibs</groupId>
  65. <artifactId>standard</artifactId>
  66. <scope>runtime</scope>
  67. <version>1.1.2</version>
  68. </dependency>
  69. -->
  70. </dependencies>
  71. <!--
  72. <build>
  73. <plugins>
  74. <plugin>
  75. <groupId>org.mortbay.jetty</groupId>
  76. <artifactId>maven-jetty-jspc-plugin</artifactId>
  77. <version>6.1.11</version>
  78. <executions>
  79. <execution>
  80. <id>jspc</id>
  81. <goals>
  82. <goal>jspc</goal>
  83. </goals>
  84. <configuration>
  85. </configuration>
  86. </execution>
  87. </executions>
  88. </plugin>
  89. </plugins>
  90. </build>
  91. -->
  92. </project>