I have recently upgraded to Gradle 8 finding out that the nebula.ospackage
plugin distributed in Gradle plugin Portal is not compatible.
In gradle-ospackage-plugin GitHub repo, there's the 11 version which claim to resolve the incompatibility with Gradle 8.
This code doesn't work:
plugins {
id "nebula.ospackage" version "11.0.0"
}
with:
- Gradle Core Plugins (plugin is not in 'org.gradle' namespace)
- Plugin Repositories (could not resolve plugin artifact 'nebula.ospackage:nebula.ospackage.gradle.plugin:11.0.0')
Searched in the following repositories:
Gradle Central Plugin Repository
How to use in Gradle a plugin from GitHub and not from the official Gradle Plugin site?
Thanks