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