pom.xml 7.5 KB

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