Maven常见错误
Posted lilihexiaogou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Maven常见错误相关的知识,希望对你有一定的参考价值。
在使用Maven install进行打包时
OS=Windows and the assembly descriptor contains a *nix-specific root-relativ
报出来如上的错误。
解决方案:
在打包项目的xml中加上下面的代码即可。
<fileSets>
<fileSet>
<directory>${basedir}/src/main/resources</directory>
<outputDirectory></outputDirectory>
</fileSet>
</fileSets>
以上是关于Maven常见错误的主要内容,如果未能解决你的问题,请参考以下文章