diff options
author | Duarte Meneses <duarte.meneses@sonarsource.com> | 2022-07-18 15:47:48 -0500 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-07-19 20:03:21 +0000 |
commit | 6e0ffb16b51126cbeaa385fa24daf661962fbc11 (patch) | |
tree | 5ec2e4b114b7cc73091d51df85c7af1dbded9752 /server | |
parent | 8cb985168fd1fbd342b47f42c33ecbd111b63e50 (diff) | |
download | sonarqube-6e0ffb16b51126cbeaa385fa24daf661962fbc11.tar.gz sonarqube-6e0ffb16b51126cbeaa385fa24daf661962fbc11.zip |
[NO JIRA] Add documentation about relocation of the sonar-plugin-api
Diffstat (limited to 'server')
-rw-r--r-- | server/sonar-docs/src/pages/extend/developing-plugin.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/server/sonar-docs/src/pages/extend/developing-plugin.md b/server/sonar-docs/src/pages/extend/developing-plugin.md index c6a80c59ff5..8f20b31b5d3 100644 --- a/server/sonar-docs/src/pages/extend/developing-plugin.md +++ b/server/sonar-docs/src/pages/extend/developing-plugin.md @@ -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. |