From bd9f2715ea39981458161b9d9ba2c99cf252fcbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Thu, 21 Jan 2021 11:10:06 +0100 Subject: [PATCH] update links to SDK Docs --- .github/template-cleanup/README.md | 2 +- .github/template-cleanup/gradle.properties | 4 ++-- CHANGELOG.md | 2 +- README.md | 14 +++++++------- build.gradle.kts | 2 +- gradle.properties | 4 ++-- src/main/resources/META-INF/plugin.xml | 2 +- 7 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/template-cleanup/README.md b/.github/template-cleanup/README.md index fce0a90..b3d285b 100644 --- a/.github/template-cleanup/README.md +++ b/.github/template-cleanup/README.md @@ -8,7 +8,7 @@ - [x] Create a new [IntelliJ Platform Plugin Template][template] project. - [ ] Verify the [pluginGroup](/gradle.properties), [plugin ID](/src/main/resources/META-INF/plugin.xml) and [sources package](/src/main/kotlin). - [ ] Review the [Legal Agreements](https://plugins.jetbrains.com/docs/marketplace/legal-agreements.html). -- [ ] [Publish a plugin manually](https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/publishing_plugin.html) for the first time. +- [ ] [Publish a plugin manually](https://plugins.jetbrains.com/docs/intellij/publishing-plugin.html?from=IJPluginTemplate) for the first time. - [ ] Set the Plugin ID in the above README badges. - [ ] Set the [Deployment Token](https://plugins.jetbrains.com/docs/marketplace/plugin-upload.html). - [ ] Click the Watch button on the top of the [IntelliJ Platform Plugin Template][template] to be notified about releases containing new features and fixes. diff --git a/.github/template-cleanup/gradle.properties b/.github/template-cleanup/gradle.properties index 59e07b2..6fba9fb 100644 --- a/.github/template-cleanup/gradle.properties +++ b/.github/template-cleanup/gradle.properties @@ -1,5 +1,5 @@ # IntelliJ Platform Artifacts Repositories -# -> https://www.jetbrains.org/intellij/sdk/docs/reference_guide/intellij_artifacts.html +# -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html pluginGroup = %GROUP% pluginName_ = %NAME% @@ -13,7 +13,7 @@ pluginVerifierIdeVersions = 2020.1.4, 2020.2.3, 2020.3 platformType = IC platformVersion = 2020.1 platformDownloadSources = true -# Plugin Dependencies -> https://www.jetbrains.org/intellij/sdk/docs/basics/plugin_structure/plugin_dependencies.html +# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html # Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22 platformPlugins = diff --git a/CHANGELOG.md b/CHANGELOG.md index 89b0308..b63135c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -57,7 +57,7 @@ - GitHub Actions - use hash based on `pluginVerifierIdeVersions` in `Setup Plugin Verifier IDEs Cache` step ### Changed -- Use [Kotlin extension function](https://jetbrains.org/intellij/sdk/docs/basics/plugin_structure/plugin_services.html?search=servic#retrieving-a-service) to retrieve the `MyProjectService` in the `MyProjectManagerListener` +- Use [Kotlin extension function](https://plugins.jetbrains.com/docs/intellij/plugin-services.html#retrieving-a-service) to retrieve the `MyProjectService` in the `MyProjectManagerListener` - Dependencies - upgrade `org.jetbrains.intellij` to `0.6.2` - Update `pluginVerifierIdeVersions` in the `gradle.properties` files diff --git a/README.md b/README.md index b1f4130..ddc75cd 100644 --- a/README.md +++ b/README.md @@ -306,13 +306,13 @@ jobs: - [Keep a Changelog][keep-a-changelog] - [GitHub Actions][gh:actions] -[docs]: https://www.jetbrains.org/intellij/sdk/docs -[docs:intro]: https://www.jetbrains.org/intellij/sdk/docs/intro/intellij_platform.html -[docs:kotlin-ui-dsl]: https://www.jetbrains.org/intellij/sdk/docs/user_interface_components/kotlin_ui_dsl.html -[docs:plugin.xml]: https://www.jetbrains.org/intellij/sdk/docs/basics/plugin_structure/plugin_configuration_file.html -[docs:publishing]: https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/publishing_plugin.html -[docs:release-channel]: https://www.jetbrains.org/intellij/sdk/docs/tutorials/build_system/deployment.html#specifying-a-release-channel -[docs:using-gradle]: https://www.jetbrains.org/intellij/sdk/docs/tutorials/build_system.html +[docs]: https://plugins.jetbrains.com/docs/intellij?from=IJPluginTemplate +[docs:intro]: https://plugins.jetbrains.com/docs/intellij/intellij-platform.html?from=IJPluginTemplate +[docs:kotlin-ui-dsl]: https://plugins.jetbrains.com/docs/intellij/kotlin-ui-dsl.html?from=IJPluginTemplate +[docs:plugin.xml]: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html?from=IJPluginTemplate +[docs:publishing]: https://plugins.jetbrains.com/docs/intellij/publishing-plugin.html?from=IJPluginTemplate +[docs:release-channel]: https://plugins.jetbrains.com/docs/intellij/deployment.html?from=IJPluginTemplate#specifying-a-release-channel +[docs:using-gradle]: https://plugins.jetbrains.com/docs/intellij/gradle-build-system.html?from=IJPluginTemplate [file:use-this-template.png]: .github/readme/use-this-template.png [file:draft-release.png]: .github/readme/draft-release.png diff --git a/build.gradle.kts b/build.gradle.kts index f48a062..3e2bb93 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -122,7 +122,7 @@ tasks { token(System.getenv("PUBLISH_TOKEN")) // pluginVersion is based on the SemVer (https://semver.org) and supports pre-release labels, like 2.1.7-alpha.3 // Specify pre-release label to publish the plugin in a custom Release Channel automatically. Read more: - // https://jetbrains.org/intellij/sdk/docs/tutorials/build_system/deployment.html#specifying-a-release-channel + // https://plugins.jetbrains.com/docs/intellij/deployment.html#specifying-a-release-channel channels(pluginVersion.split('-').getOrElse(1) { "default" }.split('.').first()) } } diff --git a/gradle.properties b/gradle.properties index 1cf9be9..5750f1e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ # IntelliJ Platform Artifacts Repositories -# -> https://www.jetbrains.org/intellij/sdk/docs/reference_guide/intellij_artifacts.html +# -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html pluginGroup = org.jetbrains.plugins.template pluginName_ = IntelliJ Platform Plugin Template @@ -13,7 +13,7 @@ pluginVerifierIdeVersions = 2020.1.4, 2020.2.3, 2020.3.1 platformType = IC platformVersion = 2020.1 platformDownloadSources = true -# Plugin Dependencies -> https://www.jetbrains.org/intellij/sdk/docs/basics/plugin_structure/plugin_dependencies.html +# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html # Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22 platformPlugins = diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index 18c852d..5c29d07 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -4,7 +4,7 @@ JetBrains - + com.intellij.modules.platform