From 6ad373f011432b79d8fff3772146373017b7758b Mon Sep 17 00:00:00 2001 From: Duarte Meneses Date: Fri, 22 Jul 2022 15:55:57 -0500 Subject: [PATCH] [NOJIRA] Update docs to point to sonar-plugin-api releases --- .../sonar-docs/src/pages/extend/developing-plugin.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/server/sonar-docs/src/pages/extend/developing-plugin.md b/server/sonar-docs/src/pages/extend/developing-plugin.md index 8f20b31b5d3..ac20b7f72b8 100644 --- a/server/sonar-docs/src/pages/extend/developing-plugin.md +++ b/server/sonar-docs/src/pages/extend/developing-plugin.md @@ -10,10 +10,14 @@ 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: + +[[warning]] +| The 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 of the dependency: ``` -org.sonarsource.api.plugin:sonar-plugin-api:9.8.0.203 +org.sonarsource.api.plugin:sonar-plugin-api: ``` ### Create a Maven Project @@ -431,6 +435,8 @@ The rules are: ``` ## API Changes +[[warning]] +| Starting with v9.5, the API is released independently of SonarQube. You can find the changes for newer releases in its [code repository](https://github.com/SonarSource/sonar-plugin-api/releases). ### Release 9.3 ![](/images/check.svg) Added -- 2.39.5