在我的maven项目中,我从lib中删除了所有jar,我在POM.XML中指定所有jar作为依赖项,我指定了插件maven war插件,maven编译器插件。
首先使用更新maven项目更新项目时,它给出了错误,我将settings.XML文件内容 jst.web 3.0更改为2.4 现在它正常工作,
现在我想在运行maven install时将POM.XML中指定的所有依赖项存储到$ {project} / WebContent / WEB-INF / lib中,因为我将maven-dependency-plugin放在POM.XML中,但它给出了不同的错误,没有任何错误信息。
行家依赖性-插件:
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>WebContent/WEB-INF/lib</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
这里存放了罐子,但它给出了错误
错误是:Unknown Validation Message