Search Gradle plugins

me.fallenbreath.yamlang

A gradle plugin to convert nestable yaml language file into plain json language file for Minecraft mods

https://github.com/Fallen-Breath/yamlang

Sources: https://github.com/Fallen-Breath/yamlang

Version 1.3.1 (latest)

Created 18 November 2023.

A gradle plugin to convert nestable yaml language file into plain json language file for Minecraft mods

Using the plugins DSL:

plugins {
  id("me.fallenbreath.yamlang") version "1.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("me.fallenbreath.yamlang:yamlang:1.3.1")
  }
}

apply(plugin = "me.fallenbreath.yamlang")

Using the plugins DSL:

plugins {
  id "me.fallenbreath.yamlang" version "1.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "me.fallenbreath.yamlang:yamlang:1.3.1"
  }
}

apply plugin: "me.fallenbreath.yamlang"

Learn how to apply plugins to subprojects