com.jarnoharno.github-packages
所有者: Jarno Harno
使用来自您的 gh 或 hub 配置的凭据使用 Github Packages 仓库
https://github.com/jarnoharno/gradle-github-packages-plugin
源码: https://github.com/jarnoharno/gradle-github-packages-plugin.git
使用 插件 DSL
plugins {
id("com.jarnoharno.github-packages") version "1.1.0"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.jarnoharno:gradle-github-packages-plugin:1.1.0")
}
}
apply(plugin = "com.jarnoharno.github-packages")
使用 插件 DSL
plugins {
id "com.jarnoharno.github-packages" version "1.1.0"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.jarnoharno:gradle-github-packages-plugin:1.1.0"
}
}
apply plugin: "com.jarnoharno.github-packages"