nebula.resolved-pom
Owner: Nebula Plugins
Replaces dynamic versions with the actual resolved versions
https://github.com/nebula-plugins/nebula-publishing-plugin
Sources: https://github.com/nebula-plugins/nebula-publishing-plugin.git
Version 3.0.1
3.0.1
Created 12 August 2015.
Replaces dynamic versions with the actual resolved versions
Using the plugins DSL:
plugins {
id("nebula.resolved-pom") version "3.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-publishing-plugin:3.0.1")
}
}
apply(plugin = "nebula.resolved-pom")
Using the plugins DSL:
plugins {
id "nebula.resolved-pom" version "3.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-publishing-plugin:3.0.1"
}
}
apply plugin: "nebula.resolved-pom"