nebula.contacts-base
Owner: Nebula Plugins
Structure to define the owners of a project, then contributing this back to other plugins
https://github.com/nebula-plugins/gradle-contacts-plugin
Version 2.2.0 (latest)
2.2.0
Created 30 January 2015.
No version description available.
Using the plugins DSL:
plugins {
id("nebula.contacts-base") version "2.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:gradle-contacts-plugin:2.2.0")
}
}
apply(plugin = "nebula.contacts-base")
Using the plugins DSL:
plugins {
id "nebula.contacts-base" version "2.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:gradle-contacts-plugin:2.2.0"
}
}
apply plugin: "nebula.contacts-base"