Where did the Apache Derby Eclipse plug-in go?

Apache Derby db-derby-10.9.1.0-src / Eclipse 4.2.1 (Juno) / Java 7 Some kind of fix. Needs more research but this will work. References: db-derby-10.9.1.0-src/BUILDING.html db-derby-10.8.1.2-src/plugins/eclipse/Readme.txt Download the Apache Derby source zip. Extract the zip. Change to the source directory. db-derby-10.9.1.0-src Perform the following ant targets. ant -quiet clobber ant -quiet buildsource ant -quiet buildjars Build the … Read more

How can I convince Eclipse CDT that a macro is defined for source code editing and code completion?

In addition to Oswald’s answer: If you have several build configurations, the default behavior of the Eclipse Indexer seem to be that it always uses the first build configuration. In my case the define was only defined in the 3rd build configuration, so the solution provided by Oswald did not help. To change this globally, … Read more

How to enable C++11 in Eclipse Juno/Kepler/Luna CDT?

There’s two things you have to do, first you need to setup your compiler, then you need to setup CDT’s language processor. Since you didn’t mention which compiler you’re using, I’ll assume it’s GCC but the steps will be similar for other compilers. (Note that you need a compiler that supports C++11, of course.) Setting … Read more