Search Gradle plugins

Version 0.2.1

0.2.1

Created 10 February 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 "0.2.1"
}

See also:

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