com.github.lahngp.github-package
Owner: Kai
avoid exposing github package credentials
https://github.com/lahngp/github-package
Sources: https://github.com/lahngp/github-package
Version 1.0.8 (latest)
1.0.8
Created 06 July 2021.
github package
Using the plugins DSL:
plugins {
id("com.github.lahngp.github-package") version "1.0.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.lahngp:github-package-nopass:1.0.8")
}
}
apply(plugin = "com.github.lahngp.github-package")
Using the plugins DSL:
plugins {
id "com.github.lahngp.github-package" version "1.0.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.lahngp:github-package-nopass:1.0.8"
}
}
apply plugin: "com.github.lahngp.github-package"