newIssue.onFile(inputFile);
newIssue.atLine(lineNumber);
newIssue.message(message);
when I deploy the plugin to the extension/plugins folder and start an analysis, I get
Caused by: java.lang.NoSuchMethodError: org.sonar.api.batch.sensor.issue.NewIssue.onFile(Lorg/sonar/api/batch/fs/InputFile;)Lorg/sonar/api/batch/sensor/issue/NewIssue;
This is run in sonarqube 5.2 and 5.3-RC1 - why does the runtime environment does not know the method ? Or what else could be the problem ?
Thanks