Answers for "maven-resources-production:chatbot: java.lang.OutOfMemoryError: Java heap space"

1

maven-resources-production:chatbot: java.lang.OutOfMemoryError: Java heap space

<!-- add the following plugin to your pom -->

<build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.19</version>
        <configuration>
            <argLine>-Xmx1024m</argLine> <!-- change the amount here to your likings -->
        </configuration>
      </plugin>
    </plugins>
  </build>
Posted by: Guest on August-17-2021

Browse Popular Code Answers by Language