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
Version 1.1.0 (latest)
Created 30 January 2021.
A Gradle plugin to simplify the deployment of artifacts to OSSRH and Maven Central
Using the plugins DSL:
plugins {
id("nl.elec332.gradle.ossrhplugin") version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.nl.elec332.gradle:OSSRHPlugin:1.1.0")
}
}
apply(plugin = "nl.elec332.gradle.ossrhplugin")
Using the plugins DSL:
plugins {
id "nl.elec332.gradle.ossrhplugin" version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.nl.elec332.gradle:OSSRHPlugin:1.1.0"
}
}
apply plugin: "nl.elec332.gradle.ossrhplugin"