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.1

1.3.1

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.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.onemillionworlds:plugin:1.3.1")
      }
    }
    
    apply(plugin = "com.onemillionworlds.typed-materials")
  • Applying plugins to all subprojects .