I use Eclipse and for some of my unit tests, I need to set some JVM args for the test to work, -Djava.library.path in particular. I set it in my POM file as follows:

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-surefire-plugin</artifactId>
  <configuration>
    <argLine>-Djava.library.path=target/dll</argLine>
  </configuration>
</plugin>

and it works correctly when I build with Maven. However, when I run in Eclipse (even with the Maven plug-in installed - I have everything else in my Eclipse environment working properly with maven), this JVM argument is not applied. Does anyone know why this is or how to fix this?

link|improve this question

73% accept rate
1  
Just to make sure - how are you running the unit test? M2Eclipse? Right-click -> Run as test? – Robert Munteanu Jul 7 '09 at 20:08
You might try their mailing lists: user@m2eclipse.codehaus.org users@maven.apache.org Check those web sites first to see how to join the mailing lists; you have to be a member before you can post. – lumpynose Jul 7 '09 at 20:12
Robert, I'm running the test as right click -> run as test. I'll check out the mailing list too, thanks! – Jeff Storey Jul 7 '09 at 20:18
feedback

1 Answer

up vote 4 down vote accepted

Running the test in Eclipse with the JUnit test runner does not invoke maven , even if you are using m2eclipse.

I suggest you either:

  • create a maven launch configuration for the test goal;
  • add -Djava.library.path=target/dll to your JVM arguments in the JUnit launch configuration.
link|improve this answer
thanks for clarifying. I had done the second option. my worry was that other developers would all have to modify their configs manually - I was hoping to push that out automatically. appreciate the help. – Jeff Storey Jul 7 '09 at 22:05
feedback

Your Answer

 
or
required, but never shown

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