9

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.

Mureinik
  • 297,002
  • 52
  • 306
  • 350
Ouissal
  • 1,519
  • 2
  • 18
  • 36

2 Answers2

18

You need quotes around the value, as it contains a space.

export MAVEN_OPTS="-Xms256m -Xmx512m"
Tim
  • 6,406
  • 22
  • 34
6

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"
Mureinik
  • 297,002
  • 52
  • 306
  • 350