pom.xml 4.3 KB

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