Search Gradle plugins

io.github.ushiosan23.resgen

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)

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)

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.ushiosan23.resgen") version "0.0.3"
}

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("io.github.ushiosan23.resgen:io.github.ushiosan23.resgen.gradle.plugin:0.0.3")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.ushiosan23.resgen")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.ushiosan23.resgen:io.github.ushiosan23.resgen.gradle.plugin:0.0.3")
      }
    }
    
    apply(plugin = "io.github.ushiosan23.resgen")
  • Applying plugins to all subprojects .