ru.tutu.github.token
Owner:
Avdeev Dmitry (tutu.ru)
Plugin to configure GitHub token in gradle scripts.
https://github.com/tutu-ru-mobile/gradle-plugin-github-token
Sources: https://github.com/tutu-ru-mobile/gradle-plugin-github-token.git
Version 1.3.5 (latest)
Created 09 November 2022.
Plugin to configure GitHub token in gradle scripts.
Using the plugins DSL:
plugins {
id("ru.tutu.github.token") version "1.3.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ru.tutu:plugin-github-token:1.3.5")
}
}
apply(plugin = "ru.tutu.github.token")
Using the plugins DSL:
plugins {
id "ru.tutu.github.token" version "1.3.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ru.tutu:plugin-github-token:1.3.5"
}
}
apply plugin: "ru.tutu.github.token"