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)
0.2.0
Created 29 December 2023.
This gradle plugin enables easy and typesafe access to resources.
Using the plugins DSL:
plugins {
id("com.jgazula.easy-resources") version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.jgazula:plugin:0.2.0")
}
}
apply(plugin = "com.jgazula.easy-resources")
Using the plugins DSL:
plugins {
id "com.jgazula.easy-resources" version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.jgazula:plugin:0.2.0"
}
}
apply plugin: "com.jgazula.easy-resources"