Search Gradle plugins

Version 11.10.1 (latest)

Created 18 December 2024.

Provides a task similar to Tar and Zip for constructing RPM and DEB package files.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.netflix.nebula.ospackage") version "11.10.1"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.netflix.nebula.ospackage:com.netflix.nebula.ospackage.gradle.plugin:11.10.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.netflix.nebula.ospackage")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.netflix.nebula.ospackage:com.netflix.nebula.ospackage.gradle.plugin:11.10.1")
      }
    }
    
    apply(plugin = "com.netflix.nebula.ospackage")
  • Applying plugins to all subprojects .