pom.xml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.acegisecurity</groupId>
  8. <artifactId>acegi-security-samples</artifactId>
  9. <version>1.0.4-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>acegi-security-sample-contacts</artifactId>
  12. <name>Acegi Security System for Spring - Contacts sample</name>
  13. <packaging>war</packaging>
  14. <dependencies>
  15. <dependency>
  16. <groupId>javax.servlet</groupId>
  17. <artifactId>servlet-api</artifactId>
  18. <version>2.4</version>
  19. <scope>provided</scope>
  20. </dependency>
  21. </dependencies>
  22. <build>
  23. <plugins>
  24. <plugin>
  25. <groupId>org.apache.maven.plugins</groupId>
  26. <artifactId>maven-war-plugin</artifactId>
  27. <configuration>
  28. <webXml>src/main/webapp/filter/WEB-INF/web.xml</webXml>
  29. </configuration>
  30. </plugin>
  31. </plugins>
  32. </build>
  33. </project>