搜索Gradle插件

版本 0.2.1(最新版)

0.2.1

创建于2019年5月21日。

随着JCenter永久重定向到Maven Central,本插件版本将不再解决,因为它只包含JCenter中存在的依赖项。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact GitHub仓库插件

使用插件DSL

plugins {
  id("com.github.dant3.github-repo-plugin") version "0.2.1"
}

使用旧版插件应用

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

apply(plugin = "com.github.dant3.github-repo-plugin")

使用插件DSL

plugins {
  id "com.github.dant3.github-repo-plugin" version "0.2.1"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.dant3:git-repo-plugin:0.2.1"
  }
}

apply plugin: "com.github.dant3.github-repo-plugin"

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