nebula.maven-resolved-dependencies
Owner: Nebula Plugins
Built on top of nebula.maven-dependencies, replacing 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 13.4.0
13.4.0
Created 09 September 2019.
Built on top of nebula.maven-dependencies, replacing dynamic versions with the actual resolved versions
Using the plugins DSL:
plugins {
id("nebula.maven-resolved-dependencies") version "13.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-publishing-plugin:13.4.0")
}
}
apply(plugin = "nebula.maven-resolved-dependencies")
Using the plugins DSL:
plugins {
id "nebula.maven-resolved-dependencies" version "13.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-publishing-plugin:13.4.0"
}
}
apply plugin: "nebula.maven-resolved-dependencies"