pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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-sandbox</artifactId>
  9. <version>2.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>spring-security-sandbox-other</artifactId>
  12. <name>Spring Security - Sandbox other</name>
  13. <description>Spring Security Miscellaneus sandbox utilities</description>
  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</groupId>
  22. <artifactId>spring-mock</artifactId>
  23. <optional>true</optional>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.ldap</groupId>
  27. <artifactId>spring-ldap</artifactId>
  28. <version>1.2.1</version>
  29. <optional>true</optional>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework</groupId>
  33. <artifactId>spring-dao</artifactId>
  34. <optional>true</optional>
  35. </dependency>
  36. <dependency>
  37. <groupId>javax.servlet</groupId>
  38. <artifactId>servlet-api</artifactId>
  39. <optional>true</optional>
  40. </dependency>
  41. <dependency>
  42. <groupId>ehcache</groupId>
  43. <artifactId>ehcache</artifactId>
  44. <version>1.1</version>
  45. <optional>true</optional>
  46. </dependency>
  47. <dependency>
  48. <groupId>ldapsdk</groupId>
  49. <artifactId>ldapsdk</artifactId>
  50. <version>4.1</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.samba.jcifs</groupId>
  54. <artifactId>jcifs</artifactId>
  55. <version>1.2.6</version>
  56. <type>jar</type>
  57. </dependency>
  58. <dependency>
  59. <groupId>hsqldb</groupId>
  60. <artifactId>hsqldb</artifactId>
  61. <version>1.8.0.4</version>
  62. <scope>test</scope>
  63. </dependency>
  64. </dependencies>
  65. <build>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.apache.maven.plugins</groupId>
  69. <artifactId>maven-compiler-plugin</artifactId>
  70. <configuration>
  71. <source>1.4</source>
  72. <target>1.4</target>
  73. </configuration>
  74. </plugin>
  75. </plugins>
  76. </build>
  77. </project>