Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Plugin Verifier can't find Gateway module #1027

Closed
fioan89 opened this issue Jun 17, 2022 · 6 comments
Closed

Plugin Verifier can't find Gateway module #1027

fioan89 opened this issue Jun 17, 2022 · 6 comments
Assignees
Labels

Comments

@fioan89
Copy link

fioan89 commented Jun 17, 2022

I'm working on a plugin for Gateway and I have a Gatway module declared as a dependency. buildPlugin and runIde tasks are fine, but runPluginVerifier complains about missing dependencies:

Plugin com.coder.gateway:1.0.0 against GW-221.5921.14: 1 missing mandatory dependency. 1 usage of internal API Missing dependencies: com.jetbrains.gateway: Plugin com.jetbrains.gateway is not available in Marketplace https://plugins.jetbrains.com

@fioan89 fioan89 added the bug label Jun 17, 2022
@hsz
Copy link
Member

hsz commented Jun 20, 2022

@fioan89 Could you please add me to the project?

@hsz hsz self-assigned this Jun 20, 2022
@fioan89
Copy link
Author

fioan89 commented Jun 20, 2022

@hsz seems like I don't have permissions to add new people on the project. Is it ok if I just post the content of the plugin.xml?

@fioan89
Copy link
Author

fioan89 commented Jun 20, 2022

This is the content of the plugin.xml and gradle.properties. I'm using Gradle IntelliJ Plugin 1.6.0

<idea-plugin>
    <id>com.coder.gateway</id>
    <name>Coder Gateway</name>
    <vendor>Coder</vendor>
    <depends>com.intellij.modules.platform</depends>
    <depends>com.jetbrains.gateway</depends>
    <extensions defaultExtensionNs="com.intellij">
        <applicationService serviceImplementation="com.coder.gateway.sdk.CoderRestClientService"></applicationService>
        <applicationService serviceImplementation="com.coder.gateway.services.CoderRecentWorkspaceConnectionsService"></applicationService>
    </extensions>
    <extensions defaultExtensionNs="com.jetbrains">
        <gatewayConnector implementation="com.coder.gateway.CoderGatewayMainView"/>
        <gatewayConnectionProvider implementation="com.coder.gateway.CoderGatewayConnectionProvider"/>
    </extensions>
</idea-plugin>
# IntelliJ Platform Artifacts Repositories
# -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html
pluginGroup=com.coder.gateway
pluginName=coder-gateway
# SemVer format -> https://semver.org
pluginVersion=1.0.0
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
pluginSinceBuild=213
pluginUntilBuild=221.*
# IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties
# Gateway available build versions https://www.jetbrains.com/intellij-repository/snapshots and https://www.jetbrains.com/intellij-repository/releases
platformType=GW
platformVersion=221.5787.23-CUSTOM-SNAPSHOT
instrumentationCompiler=221.5787.23
platformDownloadSources=true
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
platformPlugins=
# Java language level used to compile sources and to generate the files for - Java 11 is required since 2020.3
javaVersion=11
# Gradle Releases -> https://github.com/gradle/gradle/releases
gradleVersion=7.4
# Opt-out flag for bundling Kotlin standard library.
# See https://plugins.jetbrains.com/docs/intellij/kotlin.html#kotlin-standard-library for details.
# suppress inspection "UnusedProperty"
kotlin.stdlib.default.dependency=false

fioan89 added a commit to coder/jetbrains-coder that referenced this issue Jun 20, 2022
@hsz
Copy link
Member

hsz commented Jun 20, 2022

Looks like this is an issue with Plugin Verifier itself – the com.jetbrains.gateway plugin is not supposed to be resolved in JetBrains Marketplace as it is a module available in the GW release. Please ignore it for now.

@fioan89
Copy link
Author

fioan89 commented Jun 20, 2022

Thx... I believe a similar issue is raised by Gateway itself when installing the plugin from the disk, though the install is just fine. But I guess this needs to be raised with Gateway.
image

@YannCebron
Copy link
Member

@YannCebron YannCebron closed this as not planned Won't fix, can't repro, duplicate, stale Aug 9, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants