pom.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. <!-- required due to problem in maven transitive deps -->
  20. <dependency>
  21. <groupId>org.springframework</groupId>
  22. <artifactId>spring-context</artifactId>
  23. <version>1.2.6</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework</groupId>
  27. <artifactId>spring-web</artifactId>
  28. <version>1.2.6</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework</groupId>
  32. <artifactId>spring-jdbc</artifactId>
  33. <version>1.2.6</version>
  34. </dependency>
  35. <!-- end required -->
  36. <dependency>
  37. <groupId>org.springframework</groupId>
  38. <artifactId>spring-support</artifactId>
  39. <version>1.2.6</version>
  40. <scope>runtime</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework</groupId>
  44. <artifactId>spring-mock</artifactId>
  45. <version>1.2.6</version>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>ehcache</groupId>
  50. <artifactId>ehcache</artifactId>
  51. <version>1.1</version>
  52. <optional>true</optional>
  53. </dependency>
  54. <dependency>
  55. <groupId>cas</groupId>
  56. <artifactId>casclient</artifactId>
  57. <version>2.0.11</version>
  58. <optional>true</optional>
  59. </dependency>
  60. <dependency>
  61. <groupId>commons-logging</groupId>
  62. <artifactId>commons-logging</artifactId>
  63. <version>1.0.4</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>commons-codec</groupId>
  67. <artifactId>commons-codec</artifactId>
  68. <version>1.3</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>aspectj</groupId>
  72. <artifactId>aspectjrt</artifactId>
  73. <version>1.2</version>
  74. <optional>true</optional>
  75. </dependency>
  76. <dependency>
  77. <groupId>javax.servlet</groupId>
  78. <artifactId>jsp-api</artifactId>
  79. <version>2.0</version>
  80. <optional>true</optional>
  81. </dependency>
  82. <dependency>
  83. <groupId>hsqldb</groupId>
  84. <artifactId>hsqldb</artifactId>
  85. <version>1.7.3.0</version>
  86. <scope>test</scope>
  87. </dependency>
  88. </dependencies>
  89. </project>