pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.security</groupId>
  8. <artifactId>spring-security-samples</artifactId>
  9. <version>2.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>spring-security-samples-dms</artifactId>
  12. <name>Spring Security - DMS sample</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.security</groupId>
  16. <artifactId>spring-security-core</artifactId>
  17. <version>${project.version}</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework</groupId>
  21. <artifactId>spring-jdbc</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework</groupId>
  25. <artifactId>spring-aop</artifactId>
  26. <scope>runtime</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework</groupId>
  30. <artifactId>spring-mock</artifactId>
  31. <version>${spring.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>hsqldb</groupId>
  35. <artifactId>hsqldb</artifactId>
  36. <version>1.8.0.4</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>net.sf.ehcache</groupId>
  40. <artifactId>ehcache</artifactId>
  41. <version>1.2.4</version>
  42. <scope>runtime</scope>
  43. </dependency>
  44. </dependencies>
  45. </project>