CodePro Analytix: Where to find the plugin

That is an Eclipse update site, you can’t open it in a web browser. Instead you install it from Eclipse by opening ‘Help > Install New Software…’. In the ‘Work with:’ field enter the update site URL for example https://dl.google.com/eclipse/inst/codepro/latest/3.7 which still works with Eclipse Oxygen. Eclipse will then show you what can be installed from the … Read more

How to configure Eclipse CDT for cmake?

In Eclipse-CDT you do not create cmake projects but you import cmake projects. This is what you should do: Say the source of your CMake project named “Planner” is located in D:/javaworkspace/src/Planner Create a folder (the folders NEED to be parallel to each other): D:/javaworkspace/build/Planner Go to the folder D:/javaworkspace/build/Planner and run CMake using the Eclipse generator: cmake ../../src/Planner -G”Eclipse CDT4 … Read more

How to open an existing project in Eclipse?

Maybe you have closed the project and configured the project explorer view to filter closed projects. In that case, have a look at Filters in the Project Explorer view. Make sure that closed projects are disabled in the “Filters” view.

Push eclipse project to GitHub with EGit

The key lies in when you create the project in eclipse. First step, you create the Java project in eclipse. Right click on the project and choose Team > Share>Git. N.B: Eclipse will give you a warning about putting git repositories in your workspace. So when you create your project, set your project directory outside … Read more

Eclipse Mars vs Luna

I noticed eclipse has different versioning system. It has a number system as well as mars, luna, etc system. Is it the same? Is Mars same as Eclipse 7 or something ?

Avoiding “resource is out of sync with the filesystem”

You can enable this in Window – Preferences – General – Workspace – Refresh Automatically (called Refresh using native hooks or polling in newer builds) The only reason I can think why this isn’t enabled by default is performance related. For example, refreshing source folders automatically might trigger a build of the workspace. Perhaps some people want … Read more