Actually, your POM looks a bit weird:
- it is missing the right
packaging
for a webapp project.
- the maven war plugin configuration doesn't look right, you just don't need the extra stuff you added.
Here is what a minimal pom looks like:
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.mycompany.app</groupId>
<artifactId>my-webapp</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>my-webapp</finalName>
</build>
</project>
So either modify it and update the project configuration (right-click on your project then Maven > Update Project Configuration).
Or just start over and create your project using the maven-archetype-webapp
. You can do this from Eclipse: New > Project... > Maven Project, then select the maven-archetype-webapp in the wizzard and follow the seps.
Or from the command line:
mvn archetype:generate -DgroupId=com.mycompany.app -DartifactId=my-webapp -DarchetypeArtifactId=maven-archetype-webapp
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…