com.vanniktech.maven.publish
Owner: Niklas Baudy
Gradle plugin that configures an uploadArchives task to automatically upload all of your Java, Kotlin or Android libraries to any Maven instance.
https://github.com/vanniktech/gradle-maven-publish-plugin/
Sources: http://github.com/vanniktech/gradle-maven-publish-plugin/
Version 0.5.0
0.5.0
Created 16 August 2018.
Gradle plugin that configures an uploadArchives task to automatically upload all of your Java, Kotlin or Android libraries to any Maven instance.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.vanniktech.maven.publish") version "0.5.0"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("gradle.plugin.com.vanniktech:gradle-maven-publish-plugin:0.5.0") } } apply(plugin = "com.vanniktech.maven.publish")
- Applying plugins to all subprojects .