Github user justinleet commented on a diff in the pull request: https://github.com/apache/metron/pull/840#discussion_r159273549 --- Diff: pom.xml --- @@ -159,7 +159,7 @@ <version>${global_surefire_version}</version> <configuration> <!-- Skip the default running of this plug-in (or everything is run twice...see below) --> - <argLine>@{argLine} -Xmx2048m</argLine> + <argLine>-Xmx2048m</argLine> --- End diff -- This was in for code coverage via JaCoCo. It basically overrides the empty argline from above that got deleted. Was it causing problems with running things with it there?
---