Rename IDEA plugin

Hi. I tried rename my plugin GMaven to Easy Maven

I changed “name” tag in plugin.xml, bump version and upload new version -
but nothing happen.
I see old name in plugin homepage and search by new name on market not working.
I found similar question: https://intellij-support.jetbrains.com/hc/en-us/community/posts/360009304339-How-Do-I-Rename-My-Plugin

It also recommended to change only the tag “name” and bump the version. but it didn’t work for me. Can you help me?

The name in plugin.xml is overwritten by build.gradle.kts, which still has the old name gmaven:

pluginConfiguration {
    id = "ru.rzn.gmyasoedov.gmaven"
    name = "gmaven"
    // ...
}
1 Like