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"
  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.acegisecurity</groupId>
  6. <artifactId>acegi-security-samples</artifactId>
  7. <version>2.0-SNAPSHOT</version>
  8. </parent>
  9. <groupId>org.acegisecurity</groupId>
  10. <artifactId>acegi-security-samples-tutorial</artifactId>
  11. <name>Acegi Security Samples - Tutorial</name>
  12. <packaging>war</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.acegisecurity</groupId>
  16. <artifactId>acegi-security</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>javax.servlet</groupId>
  25. <artifactId>jstl</artifactId>
  26. <version>1.0</version>
  27. <scope>runtime</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>taglibs</groupId>
  31. <artifactId>standard</artifactId>
  32. <version>1.0.6</version>
  33. <scope>runtime</scope>
  34. </dependency>
  35. </dependencies>
  36. <build>
  37. <plugins>
  38. <plugin>
  39. <groupId>org.mortbay.jetty</groupId>
  40. <artifactId>maven-jetty-plugin</artifactId>
  41. <configuration>
  42. <contextPath>/tutorial</contextPath>
  43. </configuration>
  44. </plugin>
  45. </plugins>
  46. </build>
  47. </project>