pom.xml 3.9 KB

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