pom.xml 3.8 KB

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