报错 Unrecognised tag: 'phase'
运行的时候报这个错误 Unrecognised tag: 'phase',该如何解决,没有头绪。
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
</plugin>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugins>
</build>