是否可以为 RCP 产品的 .exe 旁边通常存在的默认插件文件夹指定不同的文件夹?
正常设置:
Root
|- product.exe
|- product.ini
|-- Plugins [Folder]
| -- Configuration [Folder]
所需设置:
Product
|- product.exe
|- product.ini
JarFiles [Folder]
|- *.jar
Config
|- config.ini
我已尝试根据此处列出的设置更新我的 product.ini 中的一些条目以使其正常工作,例如:
--launcher.library=@user.dir/../JarFiles
或者
--launcher.library=../JarFiles
但是当我启动时出现错误消息:
The Product executable launcher was unable to locate its companion shared library.
是否有任何运行时参数我可以指定正确地告诉 .exe 插件和配置文件夹在其他地方?