pom.xml 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>org.springframework.security</groupId>
  4. <artifactId>spring-security-heavyduty</artifactId>
  5. <name>Spring Security - Heavy Duty Sample</name>
  6. <packaging>war</packaging>
  7. <version>3.0.0.CI-SNAPSHOT</version>
  8. <dependencies>
  9. <dependency>
  10. <groupId>org.springframework.security</groupId>
  11. <artifactId>spring-security-web</artifactId>
  12. <version>${spring.security.version}</version>
  13. </dependency>
  14. <dependency>
  15. <groupId>org.springframework.security</groupId>
  16. <artifactId>spring-security-ldap</artifactId>
  17. <version>${spring.security.version}</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework.security</groupId>
  21. <artifactId>spring-security-config</artifactId>
  22. <version>${spring.security.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework</groupId>
  26. <artifactId>org.springframework.web</artifactId>
  27. <version>${spring.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework</groupId>
  31. <artifactId>org.springframework.web.servlet</artifactId>
  32. <version>${spring.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework</groupId>
  36. <artifactId>org.springframework.jdbc</artifactId>
  37. <scope>runtime</scope>
  38. <version>${spring.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework</groupId>
  42. <artifactId>org.springframework.orm</artifactId>
  43. <version>${spring.version}</version>
  44. </dependency>
  45. <!--
  46. <dependency>
  47. <groupId>org.springframework.security</groupId>
  48. <artifactId>spring-security-taglibs</artifactId>
  49. <version>${spring.security.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework</groupId>
  53. <artifactId>org.springframework.context</artifactId>
  54. <version>${spring.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework</groupId>
  58. <artifactId>org.springframework.aop</artifactId>
  59. <scope>runtime</scope>
  60. <version>${spring.version}</version>
  61. </dependency>
  62. -->
  63. <dependency>
  64. <groupId>org.freemarker</groupId>
  65. <artifactId>freemarker</artifactId>
  66. <scope>runtime</scope>
  67. <version>2.3.12</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>hsqldb</groupId>
  71. <artifactId>hsqldb</artifactId>
  72. <version>1.8.0.7</version>
  73. <scope>compile</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.hibernate</groupId>
  77. <artifactId>hibernate-entitymanager</artifactId>
  78. <version>3.3.2.GA</version>
  79. <scope>compile</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>net.sf.ehcache</groupId>
  83. <artifactId>ehcache</artifactId>
  84. <version>1.4.1</version>
  85. <scope>compile</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>javax.servlet</groupId>
  89. <artifactId>servlet-api</artifactId>
  90. <scope>provided</scope>
  91. <version>2.4</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>javax.servlet</groupId>
  95. <artifactId>jstl</artifactId>
  96. <scope>runtime</scope>
  97. <version>1.1.2</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>taglibs</groupId>
  101. <artifactId>standard</artifactId>
  102. <scope>runtime</scope>
  103. <version>1.1.2</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.apache.directory.server</groupId>
  107. <artifactId>apacheds-core</artifactId>
  108. <version>1.0.2</version>
  109. <scope>runtime</scope>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.apache.directory.server</groupId>
  113. <artifactId>apacheds-server-jndi</artifactId>
  114. <version>1.0.2</version>
  115. <scope>runtime</scope>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.slf4j</groupId>
  119. <artifactId>slf4j-log4j12</artifactId>
  120. <version>1.4.3</version>
  121. <scope>runtime</scope>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.springframework.ldap</groupId>
  125. <artifactId>spring-ldap</artifactId>
  126. <version>1.2.1</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>log4j</groupId>
  130. <artifactId>log4j</artifactId>
  131. <scope>runtime</scope>
  132. <version>1.2.14</version>
  133. </dependency>
  134. </dependencies>
  135. <build>
  136. <plugins>
  137. <plugin>
  138. <groupId>org.apache.maven.plugins</groupId>
  139. <artifactId>maven-compiler-plugin</artifactId>
  140. <configuration>
  141. <source>1.5</source>
  142. <target>1.5</target>
  143. </configuration>
  144. </plugin>
  145. <plugin>
  146. <groupId>org.apache.maven.plugins</groupId>
  147. <artifactId>maven-eclipse-plugin</artifactId>
  148. <version>2.5.1</version>
  149. <configuration>
  150. <downloadSources>true</downloadSources>
  151. <wtpversion>2.0</wtpversion>
  152. </configuration>
  153. </plugin>
  154. <plugin>
  155. <groupId>org.mortbay.jetty</groupId>
  156. <artifactId>maven-jetty-plugin</artifactId>
  157. <version>6.1.11</version>
  158. <configuration>
  159. <contextPath>/heavyduty</contextPath>
  160. <!--jettyConfig>jetty-jmx.xml</jettyConfig-->
  161. <connectors>
  162. <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
  163. <port>8080</port>
  164. <confidentialPort>8443</confidentialPort>
  165. </connector>
  166. <connector implementation="org.mortbay.jetty.security.SslSocketConnector">
  167. <port>8443</port>
  168. <keystore>certificates/server.jks</keystore>
  169. <password>password</password>
  170. <keyPassword>password</keyPassword>
  171. <truststore>certificates/server.jks</truststore>
  172. <trustPassword>password</trustPassword>
  173. <wantClientAuth>true</wantClientAuth>
  174. <needClientAuth>false</needClientAuth>
  175. </connector>
  176. </connectors>
  177. </configuration>
  178. </plugin>
  179. </plugins>
  180. </build>
  181. <properties>
  182. <spring.version>3.0.0.M2</spring.version>
  183. <spring.security.version>3.0.0.CI-SNAPSHOT</spring.security.version>
  184. </properties>
  185. </project>