Search Gradle plugins

nebula.contacts

Structure to define the owners of a project, then contributing this back to other plugins

https://github.com/nebula-plugins/gradle-contacts-plugin

Version 4.0.0

Created 10 September 2018.

Plugin to specify and publish who the owner of a project is

Using the plugins DSL:

plugins {
  id("nebula.contacts") version "4.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.netflix.nebula:gradle-contacts-plugin:4.0.0")
  }
}

apply(plugin = "nebula.contacts")

Using the plugins DSL:

plugins {
  id "nebula.contacts" version "4.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.netflix.nebula:gradle-contacts-plugin:4.0.0"
  }
}

apply plugin: "nebula.contacts"

Learn how to apply plugins to subprojects