pom.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version="1.0"?>
  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. <parent>
  5. <artifactId>spring-security-parent</artifactId>
  6. <groupId>org.springframework.security</groupId>
  7. <version>2.0-SNAPSHOT</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <groupId>org.springframework.security</groupId>
  11. <artifactId>spring-security-captcha</artifactId>
  12. <name>Spring Security - Catptcha Module</name>
  13. <version>2.0-SNAPSHOT</version>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.springframework.security</groupId>
  17. <artifactId>spring-security-core</artifactId>
  18. <version>${project.version}</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.security</groupId>
  22. <artifactId>spring-security-core</artifactId>
  23. <version>${project.version}</version>
  24. <classifier>tests</classifier>
  25. <scope>test</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework</groupId>
  29. <artifactId>spring-mock</artifactId>
  30. <scope>test</scope>
  31. </dependency>
  32. </dependencies>
  33. </project>