Search Gradle plugins

Version 0.4-SNAPSHOT

0.4-SNAPSHOT

Created 13 October 2016.

Format your Java source files with google-java-format

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.sherter.google-java-format") version "0.4-SNAPSHOT"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.github.sherter.google-java-format:google-java-format-gradle-plugin:0.4-SNAPSHOT")
      }
    }
    
    apply(plugin = "com.github.sherter.google-java-format")
  • Applying plugins to all subprojects .