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.12.0
Created 07 July 2020.
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.12.0"
}
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("com.vanniktech.maven.publish:com.vanniktech.maven.publish.gradle.plugin:0.12.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.vanniktech.maven.publish") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.vanniktech.maven.publish:com.vanniktech.maven.publish.gradle.plugin:0.12.0") } } apply(plugin = "com.vanniktech.maven.publish")
- Applying plugins to all subprojects .