com.nikitenkogleb.settings
Owner:
Gleb Nikitenko
Gradle settings convention plugin
https://github.com/Nik-Gleb/nikitenkogleb.com
Sources: https://github.com/Nik-Gleb/nikitenkogleb.com.git
Version 0.1.0 (latest)
Created 09 February 2023.
Gradle settings convention plugin
Add this plugin to your build using the plugins DSL:
plugins {
id("com.nikitenkogleb.settings") version "0.1.0"
}
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("com.nikitenkogleb.settings:com.nikitenkogleb.settings.gradle.plugin:0.1.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.nikitenkogleb.settings") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.nikitenkogleb.settings:com.nikitenkogleb.settings.gradle.plugin:0.1.0") } } apply(plugin = "com.nikitenkogleb.settings")
- Applying plugins to all subprojects .