Search Gradle plugins

Version 2.2.0 (latest)

2.2.0

Created 21 November 2016.

This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact Gradle Nexus staging plugin

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.intershop.gradle.nexusstaging") version "2.2.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.intershop.gradle.nexusstaging:nexusstaging-gradle-plugin:2.2.0")
      }
    }
    
    apply(plugin = "com.intershop.gradle.nexusstaging")
  • Applying plugins to all subprojects .