pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.springframework.security</groupId>
  6. <artifactId>spring-security-samples</artifactId>
  7. <version>2.0-SNAPSHOT</version>
  8. </parent>
  9. <groupId>org.springframework.security</groupId>
  10. <artifactId>spring-security-samples-tutorial</artifactId>
  11. <name>Acegi Security Samples - Tutorial</name>
  12. <packaging>war</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.security</groupId>
  16. <artifactId>spring-security-core</artifactId>
  17. <version>${project.version}</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework</groupId>
  21. <artifactId>spring-web</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework</groupId>
  25. <artifactId>spring-jdbc</artifactId>
  26. <scope>runtime</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework</groupId>
  30. <artifactId>spring-aop</artifactId>
  31. <scope>runtime</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>javax.servlet</groupId>
  35. <artifactId>jstl</artifactId>
  36. <version>1.0</version>
  37. <scope>runtime</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>taglibs</groupId>
  41. <artifactId>standard</artifactId>
  42. <version>1.0.6</version>
  43. <scope>runtime</scope>
  44. </dependency>
  45. </dependencies>
  46. <build>
  47. <plugins>
  48. <plugin>
  49. <groupId>org.mortbay.jetty</groupId>
  50. <artifactId>maven-jetty-plugin</artifactId>
  51. <version>6.1.5</version>
  52. <configuration>
  53. <contextPath>/tutorial</contextPath>
  54. </configuration>
  55. </plugin>
  56. </plugins>
  57. </build>
  58. </project>