xyz.jpenilla.resource-factory
Owner: Jason Penilla
Gradle plugin for generating resources at build time
https://github.com/jpenilla/resource-factory
Sources: https://github.com/jpenilla/resource-factory
Version 0.0.5
0.0.5
Created 23 March 2024.
Gradle plugin for generating resources at build time
Using the plugins DSL:
plugins {
id("xyz.jpenilla.resource-factory") version "0.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("xyz.jpenilla:resource-factory:0.0.5")
}
}
apply(plugin = "xyz.jpenilla.resource-factory")
Using the plugins DSL:
plugins {
id "xyz.jpenilla.resource-factory" version "0.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "xyz.jpenilla:resource-factory:0.0.5"
}
}
apply plugin: "xyz.jpenilla.resource-factory"