pom.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  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.5-SNAPSHOT</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. </dependencies>
  23. <build>
  24. <plugins>
  25. <plugin>
  26. <groupId>org.mortbay.jetty</groupId>
  27. <artifactId>maven-jetty-plugin</artifactId>
  28. <configuration>
  29. <contextPath>/tutorial</contextPath>
  30. </configuration>
  31. </plugin>
  32. </plugins>
  33. </build>
  34. </project>