pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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>2.0-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</groupId>
  19. <artifactId>spring-webmvc</artifactId>
  20. <version>${spring.version}</version>
  21. <scope>compile</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework</groupId>
  25. <artifactId>spring-jdbc</artifactId>
  26. <scope>compile</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework</groupId>
  30. <artifactId>spring-aop</artifactId>
  31. <scope>runtime</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework</groupId>
  35. <artifactId>spring-remoting</artifactId>
  36. <scope>runtime</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>javax.servlet</groupId>
  40. <artifactId>servlet-api</artifactId>
  41. <version>2.4</version>
  42. <scope>provided</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>net.sf.ehcache</groupId>
  46. <artifactId>ehcache</artifactId>
  47. <version>1.2.4</version>
  48. <scope>runtime</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>hessian</groupId>
  52. <artifactId>hessian</artifactId>
  53. <version>3.0.1</version>
  54. <scope>runtime</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>hsqldb</groupId>
  58. <artifactId>hsqldb</artifactId>
  59. <version>1.8.0.4</version>
  60. <scope>runtime</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>javax.servlet</groupId>
  64. <artifactId>jstl</artifactId>
  65. <version>1.0</version>
  66. <scope>runtime</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>taglibs</groupId>
  70. <artifactId>standard</artifactId>
  71. <version>1.0.6</version>
  72. <scope>runtime</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework</groupId>
  76. <artifactId>spring-mock</artifactId>
  77. <version>${spring.version}</version>
  78. <scope>test</scope>
  79. </dependency>
  80. </dependencies>
  81. <build>
  82. <plugins>
  83. <plugin>
  84. <groupId>org.apache.maven.plugins</groupId>
  85. <artifactId>maven-war-plugin</artifactId>
  86. </plugin>
  87. <plugin>
  88. <groupId>org.mortbay.jetty</groupId>
  89. <artifactId>maven-jetty-plugin</artifactId>
  90. <version>6.1.5</version>
  91. <configuration>
  92. <contextPath>/contacts</contextPath>
  93. <!--jettyConfig>${basedir}/src/test/resources/jetty.xml</jettyConfig-->
  94. <scanIntervalSeconds>10</scanIntervalSeconds>
  95. <!--scanTargets>
  96. <scanTarget>src/main/webapp/css</scanTarget>
  97. </scanTargets-->
  98. </configuration>
  99. </plugin>
  100. </plugins>
  101. </build>
  102. </project>