Search Gradle plugins

Version 0.1.1

0.1.1

Created 09 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.1.1"
}

See also:

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