pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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.4-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>net.sf.ldaptemplate</groupId>
  44. <artifactId>ldaptemplate</artifactId>
  45. <version>1.0.1</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.samba.jcifs</groupId>
  49. <artifactId>jcifs</artifactId>
  50. <version>1.2.6</version>
  51. <type>jar</type>
  52. </dependency>
  53. <dependency>
  54. <groupId>hsqldb</groupId>
  55. <artifactId>hsqldb</artifactId>
  56. <version>1.8.0.4</version>
  57. <scope>test</scope>
  58. </dependency>
  59. </dependencies>
  60. <build>
  61. <plugins>
  62. <plugin>
  63. <groupId>org.apache.maven.plugins</groupId>
  64. <artifactId>maven-compiler-plugin</artifactId>
  65. <configuration>
  66. <source>1.4</source>
  67. <target>1.4</target>
  68. </configuration>
  69. </plugin>
  70. </plugins>
  71. </build>
  72. </project>