in plugin.xml I have already added this <depends>com.intellij.modules.python</depends>
in build.gradle.kts the configuration is
dependencies {
intellijPlatform {
intellijIdeaCommunity("2024.2.6")
bundledPlugin("com.intellij.java")
plugin("PlantUML integration", "7.7.0-IJ2023.2")
plugin("PythonCore", "242.24807.4")
plugin("Pythonid", "242.26775.15")
pluginVerifier()
zipSigner()
testFramework(TestFrameworkType.Platform)
}
}
Do I miss any configuration?
1 Like
I have the same kind of error for my plugin, which has a dependency on the LSP4IJ plugin:
I retroactively triggered verifications for past release which used to work, but now they don’t. Something seems to be broken here
ldd
(LiangDianDian)
May 27, 2025, 12:48am
3
I encountered the same problem
Yes, I just make the untilBuild configuration support 252 then every verification failed for python plugin dependence.
I’ve contacted JB on this problem, and they confirmed the issue with Marketplace verifier. They’re working on a solution to fix it.
3 Likes
It still hasn’t been fixed until now
Yeah. I still can’t publish my plugin.
2 Likes
Any acknowledgement from JB on this? This completely blocks me from updating my plugin’s version, and it’s been at least 2 weeks already
ldd
(LiangDianDian)
June 5, 2025, 12:53am
10
Urgently need to fix this issue to release my plugin
hmemcpy
(Igal Tabachnik)
June 5, 2025, 8:22am
11
Sorry to pile on to this, but I have the same issue with the Scala-based plugin. Please fix
thedude
(Pablo G.)
June 5, 2025, 9:36am
12
Not sure, but maybe changing the pluginVerifier version on the gradle build file could help to not use the latest? ie 1.384
doesn’t seem to have this issue, that way all people blocked releasing a plugin can release without the faulty verifier.
See the youtrack issue
BoD
(Benoit 'BoD' Lubek)
June 5, 2025, 10:18am
13
link
(Ilya Kazakevich)
June 5, 2025, 4:42pm
15
Hello all.
Speaking about Python problem: when exactly did it start? As we haven’t changed anything for 242, that could be a verifier issue.
Also, make sure you are using the latest Gradle plugin for IJ.
I will contact verifier team.
link
(Ilya Kazakevich)
June 5, 2025, 4:57pm
16
This is a known issue, already being taken care of. This is connected with Plugin Verifier being unable to download specific dependencies from JetBrains Marketplace.
I try to use id("org.jetbrains.intellij.platform") version "2.6.0"
to upload my plugin and it still encounters the problem. I don’t know when this problem starts , the first time I saw it was May 23rd when I tried to publish my plugin. At that time I didn’t modify codes ,just upgrade the dependences of plugins
I try again today and the problem still happens.
I checked the previous versions. It seems that the problem happens when the Verifier’s version upgrades to 1.386
Hello,
Yes, this is still a valid issue, so these errors are false positives. We have approved your plugin updates.
1 Like