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.2.0 (latest)

Created 20 April 2024.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.onemillionworlds:plugin:1.2.0")
  }
}

apply(plugin = "com.onemillionworlds.typed-materials")

Using the plugins DSL:

plugins {
  id "com.onemillionworlds.typed-materials" version "1.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.onemillionworlds:plugin:1.2.0"
  }
}

apply plugin: "com.onemillionworlds.typed-materials"

Learn how to apply plugins to subprojects