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)

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:

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