nebula.contacts
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 6.0.0 (latest)
6.0.0
Created 13 September 2021.
Plugin to specify and publish who the owner of a project is
Using the plugins DSL:
plugins {
id("nebula.contacts") version "6.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:gradle-contacts-plugin:6.0.0")
}
}
apply(plugin = "nebula.contacts")
Using the plugins DSL:
plugins {
id "nebula.contacts" version "6.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:gradle-contacts-plugin:6.0.0"
}
}
apply plugin: "nebula.contacts"