Maven build and maven-failsafe-plugin - The forked VM terminated without properly saying goodbye

前端 未结 6 2112
刺人心
刺人心 2020-12-18 22:19

I use Docker and https://github.com/fabric8io/docker-maven-plugin for my integration tests.

On my Windows 10 (after updating to Windows 10 1709) mac

6条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-18 22:27

    I'm also have error like that, related with forkstarter on the surefire plugin maybe you can try add this on your pom.xml

            
                org.apache.maven.plugins
                maven-surefire-plugin
                
                    --add-modules java.base ${argLine} -Xmx1024m -XX:MaxPermSize=256m
                    3
                    true
                
            
    

    Hope, this can help you

提交回复
热议问题