Hi,
upgraded my custom java rules for Sonarqube 8.8 and used the instructions of
https://github.com/SonarSource/sonar-java/blob/master/docs/CUSTOM_RULES_101.md#looking-at-the-pom
which has these entries in pom
<properties> <sonarqube.version>8.8.0.42792</sonarqube.version> <sonarjava.version>6.14.0.25463</sonarjava.version> </properties>
Now i wanted to test if my rules are working with the latest Sonarlint for Eclipse 5.8.1 but
Sonarlint console has
[…]
Load plugins
Plugin ‘XXX Java Custom Rules’ requires plugin API 8.8.0.42792 while SonarLint supports only up to 8.5. Skip loading it.
Load plugins (done) | time=80ms
[…]
Unfortunately this is completely ignored in custom java rules 101, though the example pom has
<sonarLintSupported>true</sonarLintSupported>
Will Sonarlint support plugin API 8.8.0.42792 until Sonarqube 8.9 LTS is released ?
If not, how to fix my custom rules to make it work with the latest Sonarlint for Eclipse, simply use ?
<properties> <sonarqube.version>8.5.0.37579</sonarqube.version> <sonarjava.version>6.14.0.25463</sonarjava.version> </properties>
Gilbert