Compatibility problem with 2025.1 EAP due to com.intellij.modules.json

Hello,

I uploaded a new version of my plugin and it says there is a compatibility problem with 2025.1 EAP:

I declared com.intellij.modules.json as follows:

plugin.xml:

<idea-plugin>
    <id>com.github.isnotokay.geojsonfiletypeplugin</id>
    <name>GeoJSON Editor</name>
    <vendor>...</vendor>

    <depends>com.intellij.modules.platform</depends>
    <depends>com.intellij.modules.json</depends>

    <extensions defaultExtensionNs="com.intellij">
      ...
    </extensions>

    <extensions defaultExtensionNs="JavaScript.JsonSchema">
        ...
    </extensions>
</idea-plugin>
build.gradle.kts:

dependencies {
    testImplementation(libs.junit)

    intellijPlatform {
		...
        bundledPlugin("com.intellij.modules.json")
		...
    }
}

Am I missing something?

Looks like Plugin verifier fails with #Plugin 'com.intellij.modules.json' not declared as a plugin dependency - #17 by AntonShuvaev