com.jarnoharno.github-packages
Owner: Jarno Harno
Use Github Packages repositories with credentials from your hub config
https://github.com/jarnoharno/gradle-github-packages-plugin
Sources: https://github.com/jarnoharno/gradle-github-packages-plugin.git
Version 1.1.0 (latest)
1.1.0
Created 19 September 2020.
Use Github Packages repositories with credentials from your gh or hub config
Using the plugins DSL:
plugins {
id("com.jarnoharno.github-packages") version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.jarnoharno:gradle-github-packages-plugin:1.1.0")
}
}
apply(plugin = "com.jarnoharno.github-packages")
Using the plugins DSL:
plugins {
id "com.jarnoharno.github-packages" version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.jarnoharno:gradle-github-packages-plugin:1.1.0"
}
}
apply plugin: "com.jarnoharno.github-packages"