Search Gradle plugins

Version 0.30.0 (latest)

Created 26 February 2021.

DO NOT USE. Internal technical plugin for gradle-nexus-staging-plugin - see: io.codearte.nexus-staging

Add this plugin to your build using the plugins DSL:

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