Search Gradle plugins

Version 1.2.0

1.2.0

Created 10 April 2021.

Publishes nebula projects to Netflix OSS repositories and Maven Central

Add this plugin to your build using the plugins DSL:

plugins {
  id("nebula.oss-publishing") version "1.2.0"
}

See also:

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