Maven Out of Memory Build Failure

前端 未结 13 1163
情歌与酒
情歌与酒 2020-11-29 18:37

As of today, my maven compile fails.

[INFO] [ERROR] Unexpected
[INFO] java.lang.OutOfMemoryError: Java heap space
[INFO]  at java.util.Arrays.copyOfRange(Arr         


        
13条回答
  •  不知归路
    2020-11-29 19:25

    I got same problem when compiling Druid.io, increasing the MaxDirectMemorySize finally worked.

    export MAVEN_OPTS="-Xms8g -Xmx8g -XX:MaxDirectMemorySize=4096m"
    

提交回复
热议问题