com.github.sherter.google-java-format
Owner: Simon Herter
Format your Java source files with google-java-format
https://github.com/sherter/google-java-format-gradle-plugin
Sources: https://github.com/sherter/google-java-format-gradle-plugin.git
Version 0.2-SNAPSHOT
0.2-SNAPSHOT
Created 13 November 2015.
Format your Java source files with google-java-format
Using the plugins DSL:
plugins {
id("com.github.sherter.google-java-format") version "0.2-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.sherter.google-java-format:google-java-format:0.2-SNAPSHOT")
}
}
apply(plugin = "com.github.sherter.google-java-format")
Using the plugins DSL:
plugins {
id "com.github.sherter.google-java-format" version "0.2-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.sherter.google-java-format:google-java-format:0.2-SNAPSHOT"
}
}
apply plugin: "com.github.sherter.google-java-format"