搜索Gradle插件

版本 0.0.2 (最新版)

0.0.2

创建日期:2020年5月9日。

直接从Gradle构建脚本配置共享Git钩子

使用插件DSL

plugins {
  id("com.github.jakemarsden.git-hooks") version "0.0.2"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.jakemarsden:git-hooks-gradle-plugin:0.0.2")
  }
}

apply(plugin = "com.github.jakemarsden.git-hooks")

使用插件DSL

plugins {
  id "com.github.jakemarsden.git-hooks" version "0.0.2"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.jakemarsden:git-hooks-gradle-plugin:0.0.2"
  }
}

apply plugin: "com.github.jakemarsden.git-hooks"

学习如何将插件应用到子项目中