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>