pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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.acegisecurity</groupId>
  5. <artifactId>acegi-security-samples</artifactId>
  6. <version>1.0.7</version>
  7. </parent>
  8. <artifactId>acegi-security-samples-contacts</artifactId>
  9. <name>Acegi Security System for Spring - Contacts sample</name>
  10. <packaging>war</packaging>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.acegisecurity</groupId>
  14. <artifactId>acegi-security</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>javax.servlet</groupId>
  25. <artifactId>servlet-api</artifactId>
  26. <version>2.4</version>
  27. <scope>provided</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>net.sf.ehcache</groupId>
  31. <artifactId>ehcache</artifactId>
  32. <version>1.2.4</version>
  33. <scope>runtime</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>hessian</groupId>
  37. <artifactId>hessian</artifactId>
  38. <version>3.0.1</version>
  39. <scope>runtime</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>hsqldb</groupId>
  43. <artifactId>hsqldb</artifactId>
  44. <version>1.8.0.4</version>
  45. <scope>runtime</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>javax.servlet</groupId>
  49. <artifactId>jstl</artifactId>
  50. <version>1.0</version>
  51. <scope>runtime</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>taglibs</groupId>
  55. <artifactId>standard</artifactId>
  56. <version>1.0.6</version>
  57. <scope>runtime</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework</groupId>
  61. <artifactId>spring-ldap</artifactId>
  62. <version>1.1.2</version>
  63. <scope>runtime</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework</groupId>
  67. <artifactId>spring-mock</artifactId>
  68. <version>${spring.version}</version>
  69. <scope>test</scope>
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <plugins>
  74. <plugin>
  75. <groupId>org.apache.maven.plugins</groupId>
  76. <artifactId>maven-war-plugin</artifactId>
  77. </plugin>
  78. <plugin>
  79. <groupId>org.mortbay.jetty</groupId>
  80. <artifactId>maven-jetty-plugin</artifactId>
  81. <version>6.1.6</version>
  82. <configuration>
  83. <contextPath>/contacts</contextPath>
  84. <!--jettyConfig>${basedir}/src/test/resources/jetty.xml</jettyConfig-->
  85. <scanIntervalSeconds>10</scanIntervalSeconds>
  86. <!--scanTargets>
  87. <scanTarget>src/main/webapp/css</scanTarget>
  88. </scanTargets-->
  89. </configuration>
  90. </plugin>
  91. </plugins>
  92. </build>
  93. </project>