Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using maven 3.0.1 in ubuntu 10.10, I'm trying to do:

export JAVA_OPTS="-Dfoo=bar"
mvn clean install

And my build does not work. However, when I do

mvn clean install -Dfoo=bar

It works.

Does anyone have any idea why this happens?

share|improve this question
The same problem occurs when I tried to use maven 3.0.2... – Rafael Jan 21 '11 at 18:10

1 Answer

up vote 2 down vote accepted

Maven doesn't use JAVA_OPTS but uses MAVEN_OPTS for the same purpose.

share|improve this answer
it's strange though, in maven 2 this used to work... They lost compatibility there. – Rafael Jan 21 '11 at 18:22
looking at mvn source from 2.2.1 doesn't seem it used JAVA_OPTS either. – pingw33n Jan 21 '11 at 18:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.