Could someone help me out on this little mystery: During compilation process I provide some values via -Dvariable=value mechanism. Sometimes I get trivial failure and thought I could resume the process via reactor:resume ability.
Problem is that reactor:resume does not accept my variables. I used the same syntax that's in regular compilation process but it just doesn't work. mvn -Dvar1=val1 -Dvar2=val2 reactor:resume -Dfrom=projectname moving my variables around doesn't help either. mvn reactor:resume -Dfrom=projectname -Dvar1=val1 -Dvar2=val2 mvn -Dfrom=projectname -Dvar1=val1 -Dvar2=val2 reactor:resume Still fails to register the flags. What am I doing wrong? Thanks, Dave
