搜索 Gradle 插件

io.github.intisy.github-gradle

所有者: Intisy

github-gradle 实现了一种从 GitHub 资产获取依赖的方法,因此您不再需要像 jitpack 这样的服务

https://github.com/intisy/github-gradle

来源: https://github.com/intisy/github-gradle

版本 1.0.2 (最新版)

1.0.2

创建于 2024 年 8 月 19 日。

github-gradle 实现了一种从 GitHub 资产获取依赖的方法,因此您不再需要像 jitpack 这样的服务

使用 插件 DSL

plugins {
  id("io.github.intisy.github-gradle") version "1.0.2"
}

使用 传统插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.intisy:github-gradle:1.0.2")
  }
}

apply(plugin = "io.github.intisy.github-gradle")

使用 插件 DSL

plugins {
  id "io.github.intisy.github-gradle" version "1.0.2"
}

使用 传统插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.intisy:github-gradle:1.0.2"
  }
}

apply plugin: "io.github.intisy.github-gradle"

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