Search Gradle plugins

io.seqera.maven-oci-registry

A Gradle plugin for bidirectional Maven artifact management with OCI-compliant registries

https://github.com/seqeralabs/maven-oci-registry

Sources: https://github.com/seqeralabs/maven-oci-registry

Version 0.2.0 (latest)

Created 27 September 2025.

A Gradle plugin for bidirectional Maven artifact management with OCI-compliant registries

Add this plugin to your build using the plugins DSL:

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