pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.acegisecurity</groupId>
  7. <artifactId>acegi-security-parent</artifactId>
  8. <version>1.1-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>acegi-security</artifactId>
  11. <name>Acegi Security System for Spring</name>
  12. <scm>
  13. <connection>scm:svn:https://svn.sourceforge.net/svnroot/acegisecurity/trunk/acegisecurity/core</connection>
  14. <developerConnection>scm:svn:https://svn.sourceforge.net/svnroot/acegisecurity/trunk/acegisecurity/core</developerConnection>
  15. <url>http://svn.sourceforge.net/viewcvs.cgi/acegisecurity/trunk/acegisecurity/core/</url>
  16. </scm>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework</groupId>
  20. <artifactId>spring-remoting</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework</groupId>
  24. <artifactId>spring-jdbc</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework</groupId>
  28. <artifactId>spring-support</artifactId>
  29. <scope>runtime</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework</groupId>
  33. <artifactId>spring-mock</artifactId>
  34. <optional>true</optional>
  35. </dependency>
  36. <dependency>
  37. <groupId>ehcache</groupId>
  38. <artifactId>ehcache</artifactId>
  39. <version>1.1</version>
  40. <optional>true</optional>
  41. </dependency>
  42. <dependency>
  43. <groupId>cas</groupId>
  44. <artifactId>casclient</artifactId>
  45. <version>2.0.11</version>
  46. <optional>true</optional>
  47. </dependency>
  48. <dependency>
  49. <groupId>commons-lang</groupId>
  50. <artifactId>commons-lang</artifactId>
  51. <version>2.1</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>commons-logging</groupId>
  55. <artifactId>commons-logging</artifactId>
  56. <version>1.0.4</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>commons-codec</groupId>
  60. <artifactId>commons-codec</artifactId>
  61. <version>1.3</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>oro</groupId>
  65. <artifactId>oro</artifactId>
  66. <version>2.0.8</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>commons-collections</groupId>
  70. <artifactId>commons-collections</artifactId>
  71. <version>3.1</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>aspectj</groupId>
  75. <artifactId>aspectjrt</artifactId>
  76. <version>1.2</version>
  77. <optional>true</optional>
  78. </dependency>
  79. <dependency>
  80. <groupId>javax.servlet</groupId>
  81. <artifactId>jsp-api</artifactId>
  82. <version>2.0</version>
  83. <optional>true</optional>
  84. </dependency>
  85. <dependency>
  86. <groupId>taglibs</groupId>
  87. <artifactId>standard</artifactId>
  88. <version>1.0.6</version>
  89. <optional>true</optional>
  90. </dependency>
  91. <dependency>
  92. <groupId>hsqldb</groupId>
  93. <artifactId>hsqldb</artifactId>
  94. <version>1.8.0.4</version>
  95. <scope>test</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.apache.directory.server</groupId>
  99. <artifactId>apacheds-core</artifactId>
  100. <version>1.0.0</version>
  101. <scope>test</scope>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.slf4j</groupId>
  105. <artifactId>slf4j-log4j12</artifactId>
  106. <version>1.0.1</version>
  107. <scope>test</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>jmock</groupId>
  111. <artifactId>jmock</artifactId>
  112. <version>1.0.1</version>
  113. <scope>test</scope>
  114. </dependency>
  115. <dependency>
  116. <groupId>log4j</groupId>
  117. <artifactId>log4j</artifactId>
  118. </dependency>
  119. </dependencies>
  120. <build>
  121. <resources>
  122. <resource>
  123. <directory>${basedir}/../</directory>
  124. <targetPath>META-INF</targetPath>
  125. <includes>
  126. <include>notice.txt</include>
  127. </includes>
  128. <filtering>false</filtering>
  129. </resource>
  130. <resource>
  131. <directory>${basedir}/src/main/resources/org/acegisecurity/taglibs</directory>
  132. <targetPath>META-INF</targetPath>
  133. <includes>
  134. <include>*.tld</include>
  135. </includes>
  136. <filtering>false</filtering>
  137. </resource>
  138. <resource>
  139. <directory>${basedir}/src/main/resources</directory>
  140. <targetPath>/</targetPath>
  141. <includes>
  142. <include>**/*</include>
  143. </includes>
  144. <filtering>false</filtering>
  145. </resource>
  146. </resources>
  147. </build>
  148. </project>