Sanjeet A
Sanjeet A

Reputation: 5227

Error when uploading plugin to JetBrains Plugin Repository

I am trying to deploy my plugin to the JetBrains Plugin Repository, But getting the following error-

ID of edited plugin is null, but uploaded plugin has ID="package_name". You can not change id of plugin!

However I have ensured the <id>package id </id> has not changed. And also I am uploading this for first time.

Thanks in advance for the help. Here is the plugin.xml-

<idea-plugin version="3">
    <id>my package name</id>
    <name>My Plugin Name</name>
    <version>2.0</version>
    <vendor email="[email protected]" url="http://www.skedsoft.com">SkedSoft</vendor>

    <description><![CDATA[
      plugin description
    ]]></description>

    <change-notes><![CDATA[
      plgin change details
    ]]>
    </change-notes>

    <!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
    <idea-version since-build="141.0"/>

    <!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
         on how to target different products -->
    <!-- uncomment to enable plugin in all products

    -->
    <depends>com.intellij.modules.androidstudio</depends>
    <extensions defaultExtensionNs="com.intellij">
        <!-- Add your extensions here -->
    </extensions>

    <actions>
        my action classes and details
    </actions>

</idea-plugin>

Upvotes: 0

Views: 284

Answers (1)

chrkv
chrkv

Reputation: 648

There was a problem with plugin repository. You can upload your plugin now.

Upvotes: 1

Related Questions