Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.freefair.github.package-registry-maven-publish") version "8.11"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.freefair.gradle:github-plugin:8.11")
      }
    }
    
    apply(plugin = "io.freefair.github.package-registry-maven-publish")
  • Applying plugins to all subprojects .