Search Gradle plugins

Version 0.20.0

0.20.0

Created 05 January 2019.

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.20.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.20.0")
      }
    }
    
    apply(plugin = "io.codearte.nexus-upload-staging")
  • Applying plugins to all subprojects .