]> source.dussan.org Git - sonarqube.git/commitdiff
[NO JIRA] Add documentation about relocation of the sonar-plugin-api
authorDuarte Meneses <duarte.meneses@sonarsource.com>
Mon, 18 Jul 2022 20:47:48 +0000 (15:47 -0500)
committersonartech <sonartech@sonarsource.com>
Tue, 19 Jul 2022 20:03:21 +0000 (20:03 +0000)
server/sonar-docs/src/pages/extend/developing-plugin.md

index c6a80c59ff517eb4cfb4c4da89f220f6e1476076..8f20b31b5d34101ad88e862b5c23c1a48828a32c 100644 (file)
@@ -11,6 +11,10 @@ To build a plugin, you need Java 8 and Maven 3.1 (or greater). Gradle can also b
 ### Sonar Plugin API
 The `sonar-plugin-api` is a Java API that is used to develop plugins for SonarQube, SonarCloud and SonarLint.
 This API used to be part of SonarQube and released with it, but it is a separate component since v9.5, with its own releases. You can find it here:  [sonar-plugin-api](https://github.com/SonarSource/sonar-plugin-api).
+*The groupId was relocated from `org.sonarsource.sonarqube` to `org.sonarsource.api.plugin`*. These are the new coordinates:
+```
+org.sonarsource.api.plugin:sonar-plugin-api:9.8.0.203
+```
 
 ### Create a Maven Project
 The recommended way to start is by duplicating the plugin example project: https://github.com/SonarSource/sonar-custom-plugin-example.