pom.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>org.springframework.security</groupId>
  5. <artifactId>spring-security-cas</artifactId>
  6. <version>2.0-SNAPSHOT</version>
  7. </parent>
  8. <artifactId>spring-security-cas-adapter</artifactId>
  9. <name>Spring Security - CAS Adapter</name>
  10. <dependencies>
  11. <dependency>
  12. <groupId>cas</groupId>
  13. <artifactId>cas-server</artifactId>
  14. <version>3.0.4</version>
  15. </dependency>
  16. <dependency>
  17. <groupId>cas</groupId>
  18. <artifactId>cas</artifactId>
  19. <version>2.0.12</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework</groupId>
  23. <artifactId>spring-mock</artifactId>
  24. <scope>test</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework</groupId>
  28. <artifactId>spring-web</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework</groupId>
  32. <artifactId>spring-jdbc</artifactId>
  33. <scope>test</scope>
  34. </dependency>
  35. </dependencies>
  36. </project>