nebula.scm-pom
Owner: Nebula Plugins
Adds SCM info to the pom
https://github.com/nebula-plugins/nebula-publishing-plugin
Sources: https://github.com/nebula-plugins/nebula-publishing-plugin.git
Version 3.0.2 (latest)
3.0.2
Created 14 August 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
Adds SCM info to the pom
Using the plugins DSL:
plugins {
id("nebula.scm-pom") version "3.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-publishing-plugin:3.0.2")
}
}
apply(plugin = "nebula.scm-pom")
Using the plugins DSL:
plugins {
id "nebula.scm-pom" version "3.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-publishing-plugin:3.0.2"
}
}
apply plugin: "nebula.scm-pom"