Login  Register

Re: Running ImageJ within Eclipse

Posted by Wayne Rasband on May 03, 2007; 3:03pm
URL: http://imagej.273.s1.nabble.com/Running-ImageJ-within-Eclipse-tp3699621p3699624.html

On May 3, 2007, at 7:17 AM, James Cooper wrote:

> The answer it gives me is
>
> c:/workspace/IJ/bin/\plugins\
>
> and that seems to be correct. It must find the two plug-in
> class files since they are added to the plugins menu.

This is not correct. The "/\" between "bin" and "plugins" is a problem.
Try replacing the

     -Dplugins.dir=c:/workspace/IJ/bin/

VM argument with

     -Dplugins.dir=c:\workspace\IJ\bin\

ImageJ, when running on Windows, is not expecting a path to end in "/".
ImageJ 1.38r and later will support both Windows ("\") and Unix ("/")
path separators on either platform.

-wayne