Removes some of the bigger dependencies in fixtures in favour of smaller to speed up tests
GRADLE_OPTS environment variable controls the command line client, which is used to display console output. Increase memory available to this process. Make sure there are no idle daemons hanging around (their default timeout is 3 hrs).
The -XX:+HeapDumpOnOutOfMemoryError command-line option tells the HotSpot VM to generate a heap dump when an allocation from the Java heap or the permanent generation cannot be satisfied. There is no overhead in running with this option, and so it can be useful for production systems where OutOfMemoryError takes a long time to surface.
What this does
Removes some of the bigger dependencies in fixtures in favour of smaller to speed up tests
GRADLE_OPTS environment variable controls the command line client, which is used to display console output. Increase memory available to this process. Make sure there are no idle daemons hanging around (their default timeout is 3 hrs).
The -XX:+HeapDumpOnOutOfMemoryError command-line option tells the HotSpot VM to generate a heap dump when an allocation from the Java heap or the permanent generation cannot be satisfied. There is no overhead in running with this option, and so it can be useful for production systems where OutOfMemoryError takes a long time to surface.