Increase heap size in m2e Eclipse plugin

前端 未结 5 1812
无人及你
无人及你 2020-12-30 03:58

How does one increase the heap size of the m2e Eclipse plugin? Basically, I\'m trying to run an automated integration test using Cargo and Selenium under STS (SpringSource\'

5条回答
  •  遥遥无期
    2020-12-30 04:36

    You can add in your pom.xml your memory settings:

    
     maven-compiler-plugin
      
        ...
        true
        128m
        512m
        ...
      
    
    

    The description of all maven-compiler-plugin parameters is here: link

提交回复
热议问题