Fixed M2 pom

This commit is contained in:
Carlos Sanchez 2006-07-11 18:22:21 +00:00
parent 94a9acedad
commit 288fdb3df8
1 changed files with 20 additions and 0 deletions

View File

@ -11,6 +11,26 @@
<artifactId>acegi-security-sample-contacts</artifactId>
<name>Acegi Security System for Spring - Contacts sample</name>
<packaging>war</packaging>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.4</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<webXml>src/main/webapp/filter/WEB-INF/web.xml</webXml>
</configuration>
</plugin>
</plugins>
</build>
</project>