Skip to content

Commit 1f9ea1f

Browse files
authored
Merge pull request #147 from coder/fix-plugin-loading-on-jetbrains-products
fix: support for remote development
2 parents 174e89f + 0dba61d commit 1f9ea1f

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
## Unreleased
66

7+
### Fixed
8+
- support for `Remote Development` in the Jetbrains IDE's
9+
710
## 2.1.4 - 2022-12-23
811

912
### Added

src/main/resources/META-INF/plugin.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@
99
<depends>com.intellij.modules.platform</depends>
1010

1111
<!-- TODO: enable this when https://youtrack.jetbrains.com/issue/GTW-1528/Plugin-depends-on-unknown-plugin-comjetbrainsgateway is fixed-->
12-
<!-- depends>com.jetbrains.gateway</depends>-->
12+
<!-- <depends>com.jetbrains.gateway</depends>-->
13+
14+
<!-- we trick Gateway into no longer rasing the unknown module error by marking the dependency optional-->
15+
<depends optional="true">com.jetbrains.gateway</depends>
1316

1417
<extensions defaultExtensionNs="com.intellij">
1518
<applicationService serviceImplementation="com.coder.gateway.sdk.CoderRestClientService"></applicationService>

0 commit comments

Comments
 (0)