Numeric character in plugin ID

Hi,

I would like to publish the install4j gradle plugin in the plugin portal, but it does not accept numeric characters in the plugin ID. This means that I cannot use the word “install4j” and using anything else seems problematic. Do you plan to lift this restriction?

Thanks,

Ingo

2 Likes

I second this request.

I got the same error

task fail << {
    com.gradle.publish.PluginId.validate("ru.d10xa.allure")
}

task ok << {
    org.gradle.plugin.internal.PluginId.validate("ru.d10xa.allure")
}

Thanks for reporting. It seems like a bug in the publication plugin. I’ve raised GRADLE-3402 for this.

It seems this has been resolved in v0.9.4 of the publish plugin (see here)

I can confirm that numeric characters in the plugin ID work as of 0.9.4.