pom.xml 1.0 KB

123456789101112131415161718192021222324252627
  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-context</artifactId>
  11. <name>Spring Security - Miscellaneous Application Context Integration Tests</name>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>javax.servlet</groupId>
  16. <artifactId>servlet-api</artifactId>
  17. <version>2.5</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>junit</groupId>
  21. <artifactId>junit</artifactId>
  22. <version>4.4</version>
  23. <scope>test</scope>
  24. </dependency>
  25. </dependencies>
  26. </project>