1

I'm trying to run mvn exec with multiple system properties...it works ok with one but not with two for some reason.

e.g. This works fine

mvn  -Dlocation=c:\tmp  exec:java -Dexec.mainClass="MyClass"

This doesn't work

mvn  -Dlocation=c:\tmp  -Djava.library.path=c:\zeromq\ exec:java -Dexec.mainClass="MyClass"
DD.
  • 21,498
  • 52
  • 157
  • 246

1 Answers1

0

What about the solution proposed in this answer?

Community
  • 1
  • 1
Carlo
  • 1,686
  • 3
  • 29
  • 43