Search Gradle plugins

Version 0.7

Created 29 August 2018.

A program to convert Minecraft mods' english lang files into en_UD lang files.

Using the plugins DSL:

plugins {
  id("thefireplace.en2ud") version "0.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.thefireplace.en2ud:MC-Lang-US-to-UD:0.7")
  }
}

apply(plugin = "thefireplace.en2ud")

Using the plugins DSL:

plugins {
  id "thefireplace.en2ud" version "0.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.thefireplace.en2ud:MC-Lang-US-to-UD:0.7"
  }
}

apply plugin: "thefireplace.en2ud"

Learn how to apply plugins to subprojects