I am new to Scala and Maven, we are starting to use Scalatest to do pre deployment tests for a Java project. We are using maven-scala-plugin to run the tests, and we want to read some parameters (properties) off the command line to run the test, for example:

mvn test -Dparam1=value1 -Dparam2=value

however the problem is that when we use System.getProperty("param1") in tests it gives back null, which should be value1.

Any advices will be appreciated!

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

I suspect this is because maven forks the process and creates a new JVM to run the tests in. You can disable forking by running it like mvn -DforkMode=never.

link|improve this answer
1  
-DforkMode=never worked, thanks. – user1154653 Feb 8 at 20:31
feedback

Your Answer

 
or
required, but never shown

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