我有这个pom.xml文件
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>company</groupId>
<artifactId>trick-services-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>tricker-services-webapp</artifactId>
<packaging>war</packaging>
<name>trick-rest</name>
<!-- <build> <finalName>trick</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId> <configuration> <outputDirectory>../vagrant/deployments</outputDirectory>
</configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId>
<version>2.17</version> </plugin> </plugins> <resources> <resource> <directory>src/main/resources</directory>
<filtering>true</filtering> </resource> </resources> <testResources> <testResource>
<directory>src/test/resources</directory> <filtering>true</filtering> </testResource>
</testResources> </build> -->
<build>
<defaultGoal>test</defaultGoal>
<plugins>
<!-- The compiler plugin enforces Java 1.6 compatibility and controls
execution of annotation processors -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12</version>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<!-- …Run Code Online (Sandbox Code Playgroud)