Issue
Context: I am using DBeaver to access and view MariaDB databases. Now I have an issue with accessing a remote database via SSH tunnel. I cannot connect although it should.
I want to run and debug DBeaver in NetBeans. But as I have very few experience with Java and none with Maven I am not sure how to do that.
I have cloned the Git repository of DBeaver and opened in NetBeans. Now I see this project structure:
How can I run the application in debug mode?
Update: I have already right clicked on the project and selected "Clean and Build", which ended with "Build Success". But the menu entry "Run" in the context menu of the project is still disabled.
Solution
Since DBeaver is an Eclipse RCP application, you need to use Eclipse IDE for RCP and RAP developers. See https://github.com/dbeaver/dbeaver/wiki/Develop-in-Eclipse.
You can also use IntelliJ IDEA (https://github.com/dbeaver/dbeaver/wiki/Develop-in-IDEA), but that requires building DBeaver in Eclipse first.
Answered By - Nikita Akilov
Answer Checked By - David Marino (JavaFixing Volunteer)