pom.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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.4-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>spring-security-itest-web</artifactId>
  11. <name>Spring Security - Web Integration Tests</name>
  12. <packaging>war</packaging>
  13. <!--
  14. <dependencies>
  15. <dependency>
  16. <groupId>javax.servlet</groupId>
  17. <artifactId>jstl</artifactId>
  18. <scope>runtime</scope>
  19. <version>1.1.2</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>taglibs</groupId>
  23. <artifactId>standard</artifactId>
  24. <scope>runtime</scope>
  25. <version>1.1.2</version>
  26. </dependency>
  27. </dependencies>
  28. -->
  29. <!--
  30. <build>
  31. <plugins>
  32. <plugin>
  33. <groupId>org.mortbay.jetty</groupId>
  34. <artifactId>maven-jetty-jspc-plugin</artifactId>
  35. <version>6.1.11</version>
  36. <executions>
  37. <execution>
  38. <id>jspc</id>
  39. <goals>
  40. <goal>jspc</goal>
  41. </goals>
  42. <configuration>
  43. </configuration>
  44. </execution>
  45. </executions>
  46. </plugin>
  47. </plugins>
  48. </build>
  49. -->
  50. </project>