IJ-MR-191925 IJPL-215387 [cwm]: Prefer remoteDevelopment plugin id suffix over remote.development

To avoid assumptions there are other plugins in the non-existent remote.* group

GitOrigin-RevId: d757bc52eb6b91488d6c45dd87c1d49086b5ee52
This commit is contained in:
Nikita Katkov
2026-02-17 14:34:06 +01:00
committed by intellij-monorepo-bot
parent addd617ab2
commit 9d04e3278c
5 changed files with 8 additions and 8 deletions

View File

@@ -385,10 +385,10 @@ Or suppress temporarily:
```
❌ Test plugin 'intellij.rider.tests' is missing plugin dependencies required by its content modules
✗ Missing: com.jetbrains.remote.development
✗ Missing: com.jetbrains.remoteDevelopment
Needed by: intellij.rider.test.cases.rdct.distributed._test
💡 Fix: Add <plugin id="com.jetbrains.remote.development"/> to the test plugin's plugin.xml
💡 Fix: Add <plugin id="com.jetbrains.remoteDevelopment"/> to the test plugin's plugin.xml
```
**Cause**: A DSL-defined test plugin has content modules whose JPS dependencies include modules

View File

@@ -84,7 +84,7 @@ private fun isIntentionallyIgnored(problem: PluginProblem, pluginId: String?): B
// FIXME IDEA-356970
pluginId == "com.intellij.plugins.projectFragments" ||
// FIXME IJPL-169105
pluginId == "com.jetbrains.remote.development" ||
pluginId == "com.jetbrains.remoteDevelopment" ||
// FIXME IJPL-159498
pluginId == "org.jetbrains.plugins.docker.gateway" ||
// for intellij.build.minimal

View File

@@ -9592,7 +9592,7 @@
{
"name": "screen.forwarding.common.settings",
"scope": "app",
"pluginId": "com.jetbrains.remote.development",
"pluginId": "com.jetbrains.remoteDevelopment",
"classFqn": "com.jetbrains.rd.platform.codeWithMe.screenForwarding.ScreenForwardingCommonSettings",
"storage": "screenForwardingSettings.xml",
"properties": [
@@ -9606,7 +9606,7 @@
{
"name": "screen.forwarding.settings",
"scope": "app",
"pluginId": "com.jetbrains.remote.development",
"pluginId": "com.jetbrains.remoteDevelopment",
"classFqn": "com.jetbrains.rdserver.screenForwarding.ScreenForwardingHostSettings",
"storage": "screenForwarding.xml",
"properties": [

View File

@@ -250,8 +250,8 @@ open class StartupManagerImpl(private val project: Project, private val coroutin
idString != "com.intellij.clion.performanceTesting" &&
idString != "com.intellij.appcode" &&
idString != "com.jetbrains.kmm" &&
idString != "com.jetbrains.remote.development" &&
idString != "intellij.rider.plugins.remote.development" &&
idString != "com.jetbrains.remoteDevelopment" &&
idString != "intellij.rider.plugins.remoteDevelopment" &&
idString != "org.jetbrains.plugins.clion.radler") {
if (!(idString == "com.intellij.ml.llm" && adapter.assignableToClassName.endsWith("XNextRootPaneCustomizer"))) {
LOG.error("Only bundled plugin can define ${extensionPoint.name}: ${adapter.pluginDescriptor}")

View File

@@ -83,7 +83,7 @@ internal class IDEBackendHandler(
}
@Remote(value = "com.jetbrains.rdserver.unattendedHost.connection.UnattendedModeManagerImpl",
plugin = "com.jetbrains.remote.development")
plugin = "com.jetbrains.remoteDevelopment")
interface UnattendedModeManagerImpl {
fun remoteDevDirectLink(): String?
}