搜索Gradle插件

版本 3.0.0 (最新版本)

3.0.0

创建于2021年3月24日。

一个用于处理Git仓库的Gradle插件。

使用插件DSL

plugins {
  id("de.qaware.seu.as.code.git") version "3.0.0"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.de.qaware.seu.as.code:seuac-git-plugin:3.0.0")
  }
}

apply(plugin = "de.qaware.seu.as.code.git")

使用插件DSL

plugins {
  id "de.qaware.seu.as.code.git" version "3.0.0"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.de.qaware.seu.as.code:seuac-git-plugin:3.0.0"
  }
}

apply plugin: "de.qaware.seu.as.code.git"

了解如何将插件应用到子项目中