Eclipse JDT resource copy exclusion
Wednesday, May 30th, 2007What a nice article title…. clear as mud
So, what the article is really about relates to my playing with a postfix notation DSL; and specifically, adding IDE support within Eclipse. Since I’m going to be using Java bytecode as the underlying execution mechanism for the DSL it makes sense to try to reuse some of the Eclipse JDT functionality; but the JDT does more than I want. Specifically, any files that the JDT finds that cannot be processed by its builder are merely copied to the output directories (i.e. whilst .java files are compiled into .class files, all other files such as .xml or .postfix are merely copied).
Well, I don’t want that; I want the JDT to ignore my files. So we need to add a copy exclusion filter.
(more…)