Maven打包ERROR OS=Windows and the assembly descriptor contains a *nix-specific root-relative-reference

maven打包的时候报错
OS=Windows and the assembly descriptor contains a *nix-specific root-relative-reference (starting with slash)

原因:
在windows上执行assembly任务,但是它包含了相对于linux的路径

解决方法:

  1. 将outputDirectory节点直接闭合;
  2. 或是在linux目录前加一个点。

ex:


  
    src/main/resources
   /
  

改为


  
    src/main/resources
    ./
  

你可能感兴趣的:(java,碰到的问题)