Search Gradle plugins

Version 1.1.1

Created 21 June 2021.

Flatten or expand Json files.

Using the plugins DSL:

plugins {
  id("com.github.eutro.hierarchical-lang") version "1.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.eutro:hierarchical-lang-gradle:1.1.1")
  }
}

apply(plugin = "com.github.eutro.hierarchical-lang")

Using the plugins DSL:

plugins {
  id "com.github.eutro.hierarchical-lang" version "1.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.eutro:hierarchical-lang-gradle:1.1.1"
  }
}

apply plugin: "com.github.eutro.hierarchical-lang"

Learn how to apply plugins to subprojects