-
Notifications
You must be signed in to change notification settings - Fork 64
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
v6.4.1 incompatible with IDEA 2024.2.EAP #41
Comments
Do we have a plan to Migrating from Gradle IntelliJ Plugin (1.x) to IntelliJ Platform Gradle Plugin (2.x), |
@huangliang992 - correct. we need to migrate to IntelliJ Platform Gradle Plugin 2.x first. |
@huangliang992 tested some scenarios...looks good 👍 few comments:
Thanks! |
|
Support for IDEA 2024.2 developed by @huangliang992 in #48 - released in v7.6.0 |
following compilation issues of latest version against IDEA 2024.2 EAP:
Invocation of unresolved constructor
DefaultTemplate.<init>(String, String, URL, URL)
(2 problems)FTFolderManager.loadDefaultsFromRoot()
contains aninvokespecial
instruction referencing an unresolved constructorDefaultTemplate.<init>(String, String, URL, URL)
. This can lead toNoSuchMethodError
exception at runtime.FileTemplatesLoader.loadDefaultsFromRoot(...)
contains aninvokespecial
instruction referencing an unresolved constructorDefaultTemplate.<init>(String, String, URL, URL)
. This can lead toNoSuchMethodError
exception at runtime.Invocation of unresolved method
DefaultTemplate.getTemplateURL()
(1 problem)FTManager.createAndStoreBundledTemplate(...)
contains aninvokevirtual
instruction referencing an unresolved methodDefaultTemplate.getTemplateURL()
. This can lead toNoSuchMethodError
exception at runtime.The text was updated successfully, but these errors were encountered: