Home - Codealike/Codealike-Jetbrains GitHub Wiki

Common Questions

Error during build Invalid plugin descriptor 'plugin.xml'. The plugin ID 'com.codealike.client.intellij.plugin' should not include the word 'intellij'.

This can be ignored as its not applicable for old plugins.

https://intellij-support.jetbrains.com/hc/en-us/community/posts/13362061756050-Plugin-ID-specified-in-plugin-xml-should-not-contain-intellij

Upgrading Gradle on the project

https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-migration.html#setupdependencies

New Plugin Verifier Gradle 2.0 Template

https://github.com/JetBrains/intellij-platform-plugin-template/tree/main

Get Rid of the Plugin Name Error

intellijPlatform {
    pluginVerification {
        freeArgs = listOf("-mute", "TemplateWordInPluginName")
        ...
    }
}

Application Components Deprecated

https://plugins.jetbrains.com/docs/intellij/plugin-components.html

Running Plugin Verifier

java -jar verifier-all.jar check-plugin "./Codealike-Jetbrains-1.7.3.1.jar" "/Applications/IntelliJ IDEA CE.app/Contents" -mute TemplateWordInPluginId