pom.xml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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-parent</artifactId>
  9. <version>1.0.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>acegi-security</artifactId>
  12. <name>Acegi Security System for Spring</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework</groupId>
  16. <artifactId>spring-remoting</artifactId>
  17. <version>1.2.6</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework</groupId>
  21. <artifactId>spring-jdbc</artifactId>
  22. <version>1.2.6</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework</groupId>
  26. <artifactId>spring-support</artifactId>
  27. <version>1.2.6</version>
  28. <scope>runtime</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework</groupId>
  32. <artifactId>spring-mock</artifactId>
  33. <optional>true</optional>
  34. </dependency>
  35. <dependency>
  36. <groupId>ehcache</groupId>
  37. <artifactId>ehcache</artifactId>
  38. <version>1.1</version>
  39. <optional>true</optional>
  40. </dependency>
  41. <dependency>
  42. <groupId>cas</groupId>
  43. <artifactId>casclient</artifactId>
  44. <version>2.0.11</version>
  45. <optional>true</optional>
  46. </dependency>
  47. <dependency>
  48. <groupId>commons-logging</groupId>
  49. <artifactId>commons-logging</artifactId>
  50. <version>1.0.4</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>commons-codec</groupId>
  54. <artifactId>commons-codec</artifactId>
  55. <version>1.3</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>oro</groupId>
  59. <artifactId>oro</artifactId>
  60. <version>2.0.8</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>commons-collections</groupId>
  64. <artifactId>commons-collections</artifactId>
  65. <version>3.1</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>aspectj</groupId>
  69. <artifactId>aspectjrt</artifactId>
  70. <version>1.2</version>
  71. <optional>true</optional>
  72. </dependency>
  73. <dependency>
  74. <groupId>javax.servlet</groupId>
  75. <artifactId>jsp-api</artifactId>
  76. <version>2.0</version>
  77. <optional>true</optional>
  78. </dependency>
  79. <dependency>
  80. <groupId>hsqldb</groupId>
  81. <artifactId>hsqldb</artifactId>
  82. <version>1.7.3.0</version>
  83. <scope>test</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>directory</groupId>
  87. <artifactId>apacheds-core</artifactId>
  88. <version>0.9.3</version>
  89. <scope>test</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>jmock</groupId>
  93. <artifactId>jmock</artifactId>
  94. <version>1.0.1</version>
  95. <scope>test</scope>
  96. </dependency>
  97. </dependencies>
  98. </project>