Hello everyone. I upgraded my Eclipse application from 3.4.1 to 3.5.2 and up until this point, I had no problems.
What I'm experiencing now has to do with the VM arguments. I'm trying to set them in the main plugin's *.product
file, under the "Launching" tab as such:
-DSTANDALONE -Xmx500M -Duser.dir=${project_loc}/..
However, instead of having user.dir
set to the right value, it's always equal to /..
, meaning that Eclipse isn't substituting its project_loc
variable in that argument.
I've also tried a number of different variables there, including ProjDirPath
, and not a single variable gets substituted properly.
Any idea what I'm doing wrong here?