Search Gradle plugins

Version 20.1.0

20.1.0

Created 06 March 2023.

Plugins to ease maven-publish and ivy-publish configuration

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.netflix.nebula.maven-developer") version "20.1.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.netflix.nebula:nebula-publishing-plugin:20.1.0")
      }
    }
    
    apply(plugin = "com.netflix.nebula.maven-developer")
  • Applying plugins to all subprojects .