pom.xml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.acegisecurity</groupId>
  8. <artifactId>acegi-security-samples</artifactId>
  9. <version>1.0.5-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>acegi-security-sample-contacts</artifactId>
  12. <name>Acegi Security System for Spring - Contacts sample</name>
  13. <packaging>war</packaging>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.acegisecurity</groupId>
  17. <artifactId>acegi-security</artifactId>
  18. <version>${project.version}</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework</groupId>
  22. <artifactId>spring-webmvc</artifactId>
  23. <version>${spring.version}</version>
  24. <scope>compile</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>javax.servlet</groupId>
  28. <artifactId>servlet-api</artifactId>
  29. <version>2.4</version>
  30. <scope>provided</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>net.sf.ehcache</groupId>
  34. <artifactId>ehcache</artifactId>
  35. <version>1.2.4</version>
  36. <scope>runtime</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>hessian</groupId>
  40. <artifactId>hessian</artifactId>
  41. <version>3.0.1</version>
  42. <scope>runtime</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>hsqldb</groupId>
  46. <artifactId>hsqldb</artifactId>
  47. <version>1.8.0.4</version>
  48. <scope>runtime</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>jstl</groupId>
  52. <artifactId>jstl</artifactId>
  53. <version>1.0</version>
  54. <scope>runtime</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>taglibs</groupId>
  58. <artifactId>standard</artifactId>
  59. <version>1.0.6</version>
  60. <scope>runtime</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework</groupId>
  64. <artifactId>spring-ldap</artifactId>
  65. <version>1.1.2</version>
  66. <scope>runtime</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework</groupId>
  70. <artifactId>spring-mock</artifactId>
  71. <version>${spring.version}</version>
  72. <scope>test</scope>
  73. </dependency>
  74. </dependencies>
  75. <build>
  76. <plugins>
  77. <plugin>
  78. <groupId>org.apache.maven.plugins</groupId>
  79. <artifactId>maven-war-plugin</artifactId>
  80. </plugin>
  81. <plugin>
  82. <groupId>org.mortbay.jetty</groupId>
  83. <artifactId>maven-jetty-plugin</artifactId>
  84. <configuration>
  85. <contextPath>/contacts</contextPath>
  86. <!--jettyConfig>${basedir}/src/test/resources/jetty.xml</jettyConfig-->
  87. <scanIntervalSeconds>10</scanIntervalSeconds>
  88. <!--scanTargets>
  89. <scanTarget>src/main/webapp/css</scanTarget>
  90. </scanTargets-->
  91. </configuration>
  92. </plugin>
  93. </plugins>
  94. </build>
  95. </project>