Search Gradle plugins

Version 1.0 (latest)

Created 18 January 2018.

A plugin to automatically install hooks from your git repository

Using the plugins DSL:

plugins {
  id("com.samcgardner.hookup") version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.samcgardner:hookup:1.0")
  }
}

apply(plugin = "com.samcgardner.hookup")

Using the plugins DSL:

plugins {
  id "com.samcgardner.hookup" version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.samcgardner:hookup:1.0"
  }
}

apply plugin: "com.samcgardner.hookup"

Learn how to apply plugins to subprojects