Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.javiersc.gradle.plugins.code.formatter") version "0.1.0-alpha.68"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.javiersc.gradle-plugins:code-formatter:0.1.0-alpha.68")
      }
    }
    
    apply(plugin = "com.javiersc.gradle.plugins.code.formatter")
  • Applying plugins to all subprojects .