Folks my problem is PMD not the plugin, but I ask anyway here
Here is the error:
=============
[INFO] Error during report generation
Embedded error: Failure executing PMD for:
......\ui\internal\launcher\configuration\PreferencePageHistory.java
Encountered "abstract" at line 151, column 17.
Was expecting one of:
"}" ...
"final" ...
"@" ...
"boolean" ...
"char" ...
"byte" ...
It turns out the code has a abstract define inside a method
public ToolBar createHistoryControls(ToolBar historyBar,
ToolBarManager manager) {
historyToolbar = manager;
/**
* Superclass of the two for-/backward actions for the history.
*/
abstract class HistoryNavigationAction extends Action implements
IMenuCreator {
private Menu lastMenu;
Advice is greatly appreciated.
-D