nebula.manifest-pom
Owner: Nebula Plugins
Append additional information from our info plugin to the properties section of the pom
https://github.com/nebula-plugins/nebula-publishing-plugin
Sources: https://github.com/nebula-plugins/nebula-publishing-plugin.git
Version 2.4.0
2.4.0
Created 23 July 2015.
Append additional information from our info plugin to the properties section of the pom
Using the plugins DSL:
plugins {
id("nebula.manifest-pom") version "2.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-publishing-plugin:2.4.0")
}
}
apply(plugin = "nebula.manifest-pom")
Using the plugins DSL:
plugins {
id "nebula.manifest-pom" version "2.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-publishing-plugin:2.4.0"
}
}
apply plugin: "nebula.manifest-pom"