Search Gradle plugins

com.onemillionworlds.typed-materials

A plugin to synthesis java classes for jMonkeyEngine materials allowing them to be configured using type safe java code

https://github.com/oneMillionWorlds/TypedMaterials/wiki

Sources: https://github.com/oneMillionWorlds/TypedMaterials

Version 1.3.2 (latest)

Created 27 October 2024.

A plugin to synthesize java classes for jMonkeyEngine materials allowing them to be configured using type safe java code

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.onemillionworlds.typed-materials") version "1.3.2"
}

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