Search Gradle plugins

nl.elec332.gradle.ossrhplugin

Owner: AMJ

A Gradle plugin to simplify the deployment of artifacts to OSSRH and Maven Central

https://github.com/Elec332/GradleOSSRHPlugin

Sources: https://github.com/Elec332/GradleOSSRHPlugin.git

Version 1.1.1 (latest)

1.1.1

Created 27 June 2023.

A Gradle plugin to simplify the deployment of artifacts to OSSRH and Maven Central

Add this plugin to your build using the plugins DSL:

plugins {
  id("nl.elec332.gradle.ossrhplugin") version "1.1.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.nl.elec332.gradle:OSSRHPlugin:1.1.1")
      }
    }
    
    apply(plugin = "nl.elec332.gradle.ossrhplugin")
  • Applying plugins to all subprojects .