java.lang.classnotfoundexception:org.freeplane.main.osgi.Activator在构建Freeplane时
我正在使用Java 11在IntellijIDE上本地运行Freeplane。重新启动IDE并运行Freeplane后,我现在会收到此错误:
引起的:java.lang.classnotfoundexception:org.freeplane.main.main.main.osgi.activator
我重新启动了Intellij,重新启动了代码以进行新的安装,卸载并重新安装了IDE。
激活器文件在那里,但是构建仍在丢弃错误。
I'm running Freeplane locally on IntelliJ IDE using Java 11. After restarting the IDE and running Freeplane I now get this error:
Caused by: java.lang.ClassNotFoundException: org.freeplane.main.osgi.Activator
I've restarted IntelliJ, re-pulled the code for a fresh install, uninstalled and re-installed the IDE.
The Activator file is there, but the build is still throwing an error.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您遵循下一页上的说明?
https://docs.freeplane.org/coding/coding/ide_setup.setup.html 从Intellij Idea运行Freeplane的零件是:
在您的本地Freeplane存储库中,您应该复制
freeplane_debughelper/indue/runconfigurations
to.idea/runconfigurations
。之后,您可以从IDE运行运行配置freeplane
和freeplane dist
。I assume you followed the instructions on the following page?
https://docs.freeplane.org/coding/IDE_setup.html
The most important part for running Freeplane from IntelliJ IDEA is:
In your local Freeplane repository you should copy
freeplane_debughelper/idea/runConfigurations
to.idea/runConfigurations
. After that you can run the run configurationsfreeplane
andfreeplane dist
from the IDE.