Search Gradle plugins

Version 2.0

2.0

Created 29 June 2024.

Upload your maven artifact to Sonatype repo

Using the plugins DSL:

plugins {
  id("io.github.jeadyx.sonatype-uploader") version "2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.jeadyx:sonatypeUploader:2.0")
  }
}

apply(plugin = "io.github.jeadyx.sonatype-uploader")

Using the plugins DSL:

plugins {
  id "io.github.jeadyx.sonatype-uploader" version "2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.jeadyx:sonatypeUploader:2.0"
  }
}

apply plugin: "io.github.jeadyx.sonatype-uploader"

Learn how to apply plugins to subprojects