pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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>Spring Security - Tutorial sample</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.security</groupId>
  21. <artifactId>spring-security-core-tiger</artifactId>
  22. <version>${project.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework</groupId>
  26. <artifactId>spring-web</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework</groupId>
  30. <artifactId>spring-webmvc</artifactId>
  31. <version>${spring.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework</groupId>
  35. <artifactId>spring-jdbc</artifactId>
  36. <scope>runtime</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework</groupId>
  40. <artifactId>spring-aop</artifactId>
  41. <scope>runtime</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>javax.servlet</groupId>
  45. <artifactId>jstl</artifactId>
  46. <version>1.0</version>
  47. <scope>runtime</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>taglibs</groupId>
  51. <artifactId>standard</artifactId>
  52. <version>1.0.6</version>
  53. <scope>runtime</scope>
  54. </dependency>
  55. </dependencies>
  56. <build>
  57. <plugins>
  58. <plugin>
  59. <groupId>org.mortbay.jetty</groupId>
  60. <artifactId>maven-jetty-plugin</artifactId>
  61. <version>6.1.5</version>
  62. <configuration>
  63. <contextPath>/tutorial</contextPath>
  64. </configuration>
  65. </plugin>
  66. </plugins>
  67. </build>
  68. </project>