pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. <groupId>org.acegisecurity</groupId>
  9. <artifactId>acegi-security-samples-tutorial</artifactId>
  10. <name>Acegi Security Samples - Tutorial</name>
  11. <packaging>war</packaging>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.acegisecurity</groupId>
  15. <artifactId>acegi-security</artifactId>
  16. <version>${project.version}</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework</groupId>
  20. <artifactId>spring-web</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>javax.servlet</groupId>
  24. <artifactId>jstl</artifactId>
  25. <version>1.0</version>
  26. <scope>runtime</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>taglibs</groupId>
  30. <artifactId>standard</artifactId>
  31. <version>1.0.6</version>
  32. <scope>runtime</scope>
  33. </dependency>
  34. </dependencies>
  35. <build>
  36. <plugins>
  37. <plugin>
  38. <groupId>org.mortbay.jetty</groupId>
  39. <artifactId>maven-jetty-plugin</artifactId>
  40. <version>6.1.6</version>
  41. <configuration>
  42. <contextPath>/tutorial</contextPath>
  43. </configuration>
  44. </plugin>
  45. </plugins>
  46. </build>
  47. </project>