qwazer / markdown-confluence-gradle-plugin

Gradle plugin to publish markdown pages to confluence
Apache License 2.0
12 stars 16 forks source link

Using 'io.github' prefix #50

Open BercziSandor opened 6 months ago

BercziSandor commented 6 months ago

Please change the prefix, because of that: https://plugins.gradle.org/docs/publish-plugin#breaking-changes

The GitHub group ID prefix can't be com.github

Github has introduced a new, dedicated domain (github.io) for it’s Pages service, back in 2013 (see here). This year they have stopped automatically forwarding from the old, legacy domain (github.com) to this new one.

Maven Central has then announced that they will react to this and that they will no longer allow com.github as a valid group ID prefix (see here).

The Gradle Plugin Portal has also adopted this convention, so please use the io.github prefix in your plugin configurations.

I'm not sure what problems can arise if you don't adhere to the above expectations, but I suppose it's not a bad thing to do so. ;)

Sandor