nebula.resolved-ivy
Owner: Nebula Plugins
Publishing related plugins
https://github.com/nebula-plugins/nebula-publishing-plugin
Using the plugins DSL:
plugins {
id("nebula.resolved-ivy") version "1.12.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-publishing-plugin:1.12.5")
}
}
apply(plugin = "nebula.resolved-ivy")
Using the plugins DSL:
plugins {
id "nebula.resolved-ivy" version "1.12.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-publishing-plugin:1.12.5"
}
}
apply plugin: "nebula.resolved-ivy"