io.github.ushiosan23.resgen
Owner: Brian Alvarez
It is a plugin used to automatically generate assets to a java application (Similar to what android studio does, but very basic)
https://github.com/Ushiosan23/resgen
Sources: https://github.com/Ushiosan23/resgen.git
Version 0.0.3 (latest)
0.0.3
Created 31 May 2022.
It is a plugin used to automatically generate assets to a java application (Similar to what android studio does,
but very basic)
Using the plugins DSL:
plugins {
id("io.github.ushiosan23.resgen") version "0.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.ushiosan23:plugin:0.0.3")
}
}
apply(plugin = "io.github.ushiosan23.resgen")
Using the plugins DSL:
plugins {
id "io.github.ushiosan23.resgen" version "0.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.ushiosan23:plugin:0.0.3"
}
}
apply plugin: "io.github.ushiosan23.resgen"