kz.greetgo.upload-to-maven
Owner:
Evgenij Kolpakov
A set of plugins using in greetgo! : (short-paths, upload-to-gg-repo, upload-to-maven)
https://github.com/greetgo/gradle.plugins
Sources: https://github.com/greetgo/gradle.plugins.git
Version 0.0.5 (latest)
Created 14 August 2018.
This plugin uploads library to Central Maven Repository
Add this plugin to your build using the plugins DSL:
plugins {
id("kz.greetgo.upload-to-maven") version "0.0.5"
}
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("kz.greetgo.upload-to-maven:kz.greetgo.upload-to-maven.gradle.plugin:0.0.5") }It can then be applied in the precompiled script plugin:plugins { id("kz.greetgo.upload-to-maven") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("kz.greetgo.upload-to-maven:kz.greetgo.upload-to-maven.gradle.plugin:0.0.5") } } apply(plugin = "kz.greetgo.upload-to-maven") - Applying plugins to all subprojects .