Search Gradle plugins

io.github.gradle-nexus.publish-plugin

Gradle Plugin for publishing to Nexus that automates creating, closing, and releasing staging repositories

https://github.com/gradle-nexus/publish-plugin

Sources: https://github.com/gradle-nexus/publish-plugin

Version 1.3.0

1.3.0

Created 06 March 2023.

Gradle Plugin for publishing to Nexus that automates creating, closing, and releasing staging repositories

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.gradle-nexus.publish-plugin") version "1.3.0"
}

See also:

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