com.theoremlp.github-packages-settings
所有者: Theorem LP
简化从GitHub Packages存储库加载Gradle插件的过程
https://github.com/theoremlp/gradle-github-packages-plugin
来源: https://github.com/theoremlp/gradle-github-packages-plugin
使用插件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"