pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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>javax.servlet</groupId>
  30. <artifactId>jstl</artifactId>
  31. <version>1.0</version>
  32. <scope>runtime</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>taglibs</groupId>
  36. <artifactId>standard</artifactId>
  37. <version>1.0.6</version>
  38. <scope>runtime</scope>
  39. </dependency>
  40. </dependencies>
  41. <build>
  42. <plugins>
  43. <plugin>
  44. <groupId>org.mortbay.jetty</groupId>
  45. <artifactId>maven-jetty-plugin</artifactId>
  46. <version>6.1.5</version>
  47. <configuration>
  48. <contextPath>/tutorial</contextPath>
  49. </configuration>
  50. </plugin>
  51. </plugins>
  52. </build>
  53. </project>