Search Gradle plugins

com.labters.styler.stylerplugin

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

http://www.labters.com/

Sources: https://github.com/mayuce

Version 1.0.0 (latest)

Created 18 October 2020.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.labters.styler.stylerplugin" version "1.0.0"
}

Using legacy plugin application:

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

apply plugin: "com.labters.styler.stylerplugin"

Learn how to apply plugins to subprojects