pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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.acegisecurity</groupId>
  8. <artifactId>acegi-security-sandbox</artifactId>
  9. <version>1.0.6-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>acegi-security-sandbox-other</artifactId>
  12. <name>Acegi Security System for Spring - Sandbox other</name>
  13. <description>Acegi Security System for Spring Miscellaneus sandbox utilities</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.acegisecurity</groupId>
  17. <artifactId>acegi-security</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>javax.servlet</groupId>
  27. <artifactId>servlet-api</artifactId>
  28. <version>2.4</version>
  29. <optional>true</optional>
  30. </dependency>
  31. <dependency>
  32. <groupId>ehcache</groupId>
  33. <artifactId>ehcache</artifactId>
  34. <version>1.1</version>
  35. <optional>true</optional>
  36. </dependency>
  37. <dependency>
  38. <groupId>ldapsdk</groupId>
  39. <artifactId>ldapsdk</artifactId>
  40. <version>4.1</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.samba.jcifs</groupId>
  44. <artifactId>jcifs</artifactId>
  45. <version>1.2.6</version>
  46. <type>jar</type>
  47. </dependency>
  48. <dependency>
  49. <groupId>hsqldb</groupId>
  50. <artifactId>hsqldb</artifactId>
  51. <version>1.8.0.4</version>
  52. <scope>test</scope>
  53. </dependency>
  54. </dependencies>
  55. <build>
  56. <plugins>
  57. <plugin>
  58. <groupId>org.apache.maven.plugins</groupId>
  59. <artifactId>maven-compiler-plugin</artifactId>
  60. <configuration>
  61. <source>1.4</source>
  62. <target>1.4</target>
  63. </configuration>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. </project>