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.
Add this plugin to your build using the plugins DSL:
plugins {
id("ru.tutu.github.token") version "1.3.5"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("ru.tutu.github.token:ru.tutu.github.token.gradle.plugin:1.3.5") }
It can then be applied in the precompiled script plugin:plugins { id("ru.tutu.github.token") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ru.tutu.github.token:ru.tutu.github.token.gradle.plugin:1.3.5") } } apply(plugin = "ru.tutu.github.token")
- Applying plugins to all subprojects .