nebula.nebula-maven-scm
Owner: Nebula Plugins
Publishing related plugins
https://github.com/nebula-plugins/nebula-publishing-plugin
Version 2.2.2 (latest)
2.2.2
Created 07 April 2015.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Using the plugins DSL:
plugins {
id("nebula.nebula-maven-scm") version "2.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-publishing-plugin:2.2.2")
}
}
apply(plugin = "nebula.nebula-maven-scm")
Using the plugins DSL:
plugins {
id "nebula.nebula-maven-scm" version "2.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-publishing-plugin:2.2.2"
}
}
apply plugin: "nebula.nebula-maven-scm"