Deprecated: I recommend using https://github.com/diffplug/spotless
A plugin that formats your code using google-java-format.
Apply the plugin in your build.gradle
:
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.f2prateek.javafmt:javafmt:0.1.6'
}
}
apply plugin: 'com.f2prateek.javafmt'
Run ./gradlew fmt
to format your files. This also runs when you call ./gradlew assemble
.
Run ./gradlew checkFmt
to verify your files are formatted. This also runs when you call ./gradlew check
.
To use 4 space indents instead of 2 space indents add this to your build.gradle
:
javafmt {
style 'AOSP'
}
By default google-java-format version 1.3 is used. To change that you can explicitly add it to your dependencies.
dependencies {
javafmt "com.google.googlejavaformat:google-java-format:${version}"
}
Copyright 2017 Prateek Srivastava
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.