nebula.maven-base-publish
Owner: Nebula Plugins
Setup nebula maven publication. Add a name and description element to the published POM
https://github.com/nebula-plugins/nebula-publishing-plugin
Sources: https://github.com/nebula-plugins/nebula-publishing-plugin.git
Version 17.2.0
17.2.0
Created 01 March 2020.
Setup nebula maven publication. Add a name and description element to the published POM
Using the plugins DSL:
plugins {
id("nebula.maven-base-publish") version "17.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-publishing-plugin:17.2.0")
}
}
apply(plugin = "nebula.maven-base-publish")
Using the plugins DSL:
plugins {
id "nebula.maven-base-publish" version "17.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-publishing-plugin:17.2.0"
}
}
apply plugin: "nebula.maven-base-publish"