I'm on OpenSuse, I'm following this tutorial to set up Maven.
When I ran this :
export MAVEN_OPTS=-Xms256m -Xmx512m
I got the following error:
bash: export: `-Xmx512m': not a valid identifier
I've followed that tutorial's steps, the Maven I downloaded is Version 3.5.2.
The space in between both options makes the shell interpret this as two different arguments. You need to protect the options with quotes:
export MAVEN_OPTS="-Xms256m -Xmx512m"
You need quotes around the value, as it contains a space.
export MAVEN_OPTS="-Xms256m -Xmx512m"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With