Search Gradle plugins

io.github.sgtsilvio.gradle.oci

Gradle plugin to ease producing (multi-arch) OCI images without requiring external tools

https://github.com/SgtSilvio/gradle-oci

Sources: https://github.com/SgtSilvio/gradle-oci.git

Version 0.17.0 (latest)

Created 02 December 2024.

Gradle plugin to ease using and producing (multi-arch) OCI images without requiring external tools

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.sgtsilvio.gradle.oci") version "0.17.0"
}

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("io.github.sgtsilvio.gradle.oci:io.github.sgtsilvio.gradle.oci.gradle.plugin:0.17.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.sgtsilvio.gradle.oci")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.sgtsilvio.gradle.oci:io.github.sgtsilvio.gradle.oci.gradle.plugin:0.17.0")
      }
    }
    
    apply(plugin = "io.github.sgtsilvio.gradle.oci")
  • Applying plugins to all subprojects .