pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. <parent>
  4. <groupId>org.springframework.security</groupId>
  5. <artifactId>spring-security-samples</artifactId>
  6. <version>3.0.6.CI-SNAPSHOT</version>
  7. </parent>
  8. <artifactId>spring-security-samples-contacts</artifactId>
  9. <name>Spring Security - Contacts sample</name>
  10. <packaging>war</packaging>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.springframework.security</groupId>
  14. <artifactId>spring-security-core</artifactId>
  15. <version>${project.version}</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework.security</groupId>
  19. <artifactId>spring-security-config</artifactId>
  20. <version>${project.version}</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.security</groupId>
  24. <artifactId>spring-security-acl</artifactId>
  25. <version>${project.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.security</groupId>
  29. <artifactId>spring-security-taglibs</artifactId>
  30. <version>${project.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework</groupId>
  34. <artifactId>spring-core</artifactId>
  35. <exclusions>
  36. <exclusion>
  37. <artifactId>commons-logging</artifactId>
  38. <groupId>commons-logging</groupId>
  39. </exclusion>
  40. </exclusions>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework</groupId>
  44. <artifactId>spring-webmvc</artifactId>
  45. <scope>compile</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework</groupId>
  49. <artifactId>spring-jdbc</artifactId>
  50. <scope>compile</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework</groupId>
  54. <artifactId>spring-aop</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework</groupId>
  58. <artifactId>spring-test</artifactId>
  59. <scope>test</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>javax.servlet</groupId>
  63. <artifactId>servlet-api</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>javax.servlet</groupId>
  67. <artifactId>jstl</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>taglibs</groupId>
  71. <artifactId>standard</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>net.sf.ehcache</groupId>
  75. <artifactId>ehcache</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>hessian</groupId>
  79. <artifactId>hessian</artifactId>
  80. <version>3.0.1</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>hsqldb</groupId>
  84. <artifactId>hsqldb</artifactId>
  85. <scope>runtime</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.slf4j</groupId>
  89. <artifactId>slf4j-api</artifactId>
  90. <version>1.6.0</version>
  91. <scope>runtime</scope>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.slf4j</groupId>
  95. <artifactId>jcl-over-slf4j</artifactId>
  96. <version>1.6.0</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.slf4j</groupId>
  100. <artifactId>slf4j-log4j12</artifactId>
  101. <version>1.6.0</version>
  102. <scope>runtime</scope>
  103. </dependency>
  104. <dependency>
  105. <groupId>log4j</groupId>
  106. <artifactId>log4j</artifactId>
  107. <scope>runtime</scope>
  108. </dependency>
  109. </dependencies>
  110. <build>
  111. <plugins>
  112. <plugin>
  113. <groupId>org.apache.maven.plugins</groupId>
  114. <artifactId>maven-war-plugin</artifactId>
  115. </plugin>
  116. <plugin>
  117. <groupId>org.mortbay.jetty</groupId>
  118. <artifactId>maven-jetty-plugin</artifactId>
  119. <version>${jetty.version}</version>
  120. <configuration>
  121. <contextPath>/contacts</contextPath>
  122. <!--jettyConfig>${basedir}/src/test/resources/jetty.xml</jettyConfig-->
  123. <scanIntervalSeconds>5</scanIntervalSeconds>
  124. <!--scanTargets>
  125. <scanTarget>src/main/webapp/css</scanTarget>
  126. </scanTargets-->
  127. </configuration>
  128. <!--
  129. <dependencies>
  130. <dependency>
  131. <groupId>hsqldb</groupId>
  132. <artifactId>hsqldb</artifactId>
  133. <version>1.8.0.7</version>
  134. <scope>runtime</scope>
  135. </dependency>
  136. </dependencies>
  137. -->
  138. </plugin>
  139. </plugins>
  140. </build>
  141. </project>