-
Notifications
You must be signed in to change notification settings - Fork 272
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
Cannot find builtin plugin JavaScript with 212 (2021.2 EAP) IDE dependency #674
Comments
I think it should be inside |
@zolotov The change has been introduced by @develar in commit from 27.03.2021 and it's possible that there were some other changes to plugin classloading rules recently, which resulted in the aforementioned issue. I don't really know how to fix this, or why @develar moved the plugin descriptor out of META-INF, as |
My point is that it's an unlikely problem for the gradle-intellij-plugin and probably even the problem of the JavaScript plugin for IntelliJ. @piotrtomiak could you please investigate that together with @develar, or probably you know the better candidate to take this over? |
7259: Support 2021.2 EAPs r=Undin a=Undin Note, `js` module won't be included in 212 build because of JetBrains/intellij-platform-gradle-plugin#674 changelog: Support 2021.2 EAPs Co-authored-by: Arseniy Pendryak <a.pendryak@yandex.ru> Co-authored-by: vlad20012 <beskvlad@gmail.com>
I also faced this issue, @develar ping |
Any updates? |
Any progress? |
The fix is now available in |
7527: Enable js module for 2021.2 builds r=avrong a=Undin Previously, the corresponding module was excluded from 2021.2 builds because of JetBrains/intellij-platform-gradle-plugin#674 that was fixed in 1.1.3 changelog: Enable [Go to generated declaration](https://plugins.jetbrains.com/plugin/8182-rust/docs/wasm-projects-support.html#goto-wasm-bindgen) line marker in WASM projects for 2021.2 platform Co-authored-by: Arseniy Pendryak <a.pendryak@yandex.ru>
My IDEA version is 2022.1, I also meet this issue :
the step how to recurrence the issue:step 1:Use Idea's [new project], and new a plugin project step 2:
step 3:
Any Solution? UPDATE:
|
IC is not suitable for plug-in development, many functions are not available |
The plugin shows error when I try to load a plugin project
As a result, it's impossible to build plugins for 212 EAPs using
gradle-intellij-plugin
Important details:
gradle-intellij-plugin
0.7.3212.3116-EAP-CANDIDATE-SNAPSHOT
)JavaScript
plugin dependencyTest project can be found here
I suppose the root of the problem is a movement of
META-INF/web-platform.xml
tointellij.javascript.web.xml
(i.e. to top level in the corresponding jar file).As a result,
com.jetbrains.plugin.structure.intellij.plugin.IdePluginManager#createPlugin(java.nio.file.Path, boolean, java.lang.String)
fails to findintellij.javascript.web.xml
. Not sure, it's an issue of the platform ororg.jetbrains.intellij.plugins:structure-intellij
dependencyRelated to #608
The text was updated successfully, but these errors were encountered: