Thursday, August 13, 2020

The forked VM terminated without properly saying goodbye. VM crash or System.exit called

 At the time of `mvn clean install` if you are getting this error.


you just have add a plugin in your pom.xml file.

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-surefire-plugin</artifactId>
  <configuration>
    <forkCount>3</forkCount>
    <reuseForks>true</reuseForks>
    <argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine>
  </configuration>
</plugin>


Thats All!
Happy Coding.




Share this

0 Comment to "The forked VM terminated without properly saying goodbye. VM crash or System.exit called"

Post a Comment