Slackbot
03/30/2023, 11:12 PMephemient
03/30/2023, 11:18 PMephemient
03/30/2023, 11:21 PMrelease also includes all final checks, builds of libraries and ide plugins and publication into several different repositories, which can take 1-3 working days (usually 1-2)
Vampire
03/30/2023, 11:31 PMmavenCentral()
as project repository.
But what you need is it as plugin respository in your settings script.
The default gradlePluginPortal()
redirects to JCenter for missing libs which forwards to MavenCentral for missing libs.
But as MavenCentral has it, but JCenter returns 404, JCenter probably has some cache that remembered it didn't see the file.
So either declare MC as additional plugin repository before GPP, or just wait until the cache refreshes.
Especially as you should wait anyway until the release process finished as @ephemient said. 🙂Michael Strasser
03/31/2023, 1:10 AMVampire
03/31/2023, 1:11 AMIgor Wojda
03/31/2023, 7:58 AMsetting.gradle.kts
did the trick (at this mid release time).
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
}
}
I will see how this will play out with the next Kotlin update. If if will be picked to quickly again I will consider setting Renovate stabilitydays option to delay this update.Vampire
03/31/2023, 8:05 AMVampire
03/31/2023, 8:06 AMtwisterrob
03/31/2023, 12:02 PMVampire
03/31/2023, 12:14 PMtwisterrob
03/31/2023, 12:15 PMtwisterrob
03/31/2023, 6:43 PMZak Taccardi
03/31/2023, 8:07 PM--refresh-versions
flag tootwisterrob
03/31/2023, 8:08 PMephemient
03/31/2023, 8:09 PM--refresh-versions
can't force the upstream remote repository to refresh its cachesephemient
03/31/2023, 8:12 PM