diff options
author | Duarte Meneses <duarte.meneses@sonarsource.com> | 2022-07-22 15:55:57 -0500 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-07-25 20:03:59 +0000 |
commit | 6ad373f011432b79d8fff3772146373017b7758b (patch) | |
tree | 56bc8ac343580eed16e4a79d9b0e9dc932869708 | |
parent | 9a00ae3a9c5201f1be8ea29be0e5ab5820b2efcb (diff) | |
download | sonarqube-6ad373f011432b79d8fff3772146373017b7758b.tar.gz sonarqube-6ad373f011432b79d8fff3772146373017b7758b.zip |
[NOJIRA] Update docs to point to sonar-plugin-api releases
-rw-r--r-- | server/sonar-docs/src/pages/extend/developing-plugin.md | 12 |
1 files 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:<version> ``` ### 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 |