문제

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"
도움이 되었습니까?

해결책

What about the solution proposed in this answer?

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top