Search Gradle plugins

Version 0.0.3 (latest)

0.0.3

Created 28 October 2020.

Simple plugin to upload java components to Maven repository

Add this plugin to your build using the plugins DSL:

plugins {
  id("one.chest.maven-publish-plugin") version "0.0.3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("one.chest:maven-publish-plugin:0.0.3")
      }
    }
    
    apply(plugin = "one.chest.maven-publish-plugin")
  • Applying plugins to all subprojects .