搜索Gradle插件

版本 0.0.10 (最新版)

0.0.10

创建于2023年7月10日。

简化从GitHub Packages存储库加载Gradle插件的过程

使用插件DSL

plugins {
  id("com.theoremlp.github-packages-settings") version "0.0.10"
}

使用遗留插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.theoremlp.github.packages:gradle-github-packages-plugin:0.0.10")
  }
}

apply(plugin = "com.theoremlp.github-packages-settings")

使用插件DSL

plugins {
  id "com.theoremlp.github-packages-settings" version "0.0.10"
}

使用遗留插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.theoremlp.github.packages:gradle-github-packages-plugin:0.0.10"
  }
}

apply plugin: "com.theoremlp.github-packages-settings"

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