Search Gradle plugins

com.labters.styler

This is the plugin which provides a task merging json style files.!

http://www.labters.com/

Sources: https://github.com/mayuce

Version 0.0.1 (latest)

Created 10 October 2020.

This is the plugin which provides a task merging json style files.!

Using the plugins DSL:

plugins {
  id("com.labters.styler") version "0.0.1"
}

Using legacy plugin application:

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

apply(plugin = "com.labters.styler")

Using the plugins DSL:

plugins {
  id "com.labters.styler" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.labters:stylertask:0.0.1"
  }
}

apply plugin: "com.labters.styler"

Learn how to apply plugins to subprojects