com.jgazula.easy-resources
Owner: JG
This gradle plugin enables easy and typesafe access to resources.
https://github.com/jaygazula27/easy-resources-gradle-plugin
Sources: https://github.com/jaygazula27/easy-resources-gradle-plugin
Version 0.2.0 (latest)
Created 29 December 2023.
This gradle plugin enables easy and typesafe access to resources.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.jgazula.easy-resources") version "0.2.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.jgazula.easy-resources:com.jgazula.easy-resources.gradle.plugin:0.2.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.jgazula.easy-resources") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.jgazula.easy-resources:com.jgazula.easy-resources.gradle.plugin:0.2.0") } } apply(plugin = "com.jgazula.easy-resources")
- Applying plugins to all subprojects .