Is there a way to install a plugin through the command line without spinning up ImageJ? I am using Travis CI to test code that calls ImageJ through Python, but one of the tests uses a non-default plugin (BigStitcher).
My script has Travis download a Fiji installation, but I don’t know how to tell it to add the plugin. Do I need to manually download the correct jar and then unpack it to the plugins directory, or is there a better way of doing this?
For reference, here’s the bash script (courtesy of @ctrueden) that downloads the Fiji installation.
echo
echo "--> Downloading Fiji"
curl -fsO http://downloads.imagej.net/fiji/latest/fiji-nojre.zip
echo "--> Unpacking Fiji"
rm -rf Fiji.app
unzip fiji-nojre.zip