ru.raysmith.setupapp
Owner: Ray Smith
Inheritance of dependent modules resources with env filtering
https://github.com/RaySmith-ttc/setupapp.git
Sources: https://github.com/RaySmith-ttc/setupapp.git
Version 1.8 (latest)
Created 03 December 2024.
Inheritance of dependent modules resources with env filtering
Add this plugin to your build using the plugins DSL:
plugins {
id("ru.raysmith.setupapp") version "1.8"
}
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.raysmith.setupapp:ru.raysmith.setupapp.gradle.plugin:1.8") }
It can then be applied in the precompiled script plugin:plugins { id("ru.raysmith.setupapp") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ru.raysmith.setupapp:ru.raysmith.setupapp.gradle.plugin:1.8") } } apply(plugin = "ru.raysmith.setupapp")
- Applying plugins to all subprojects .