formatter-maven-plugin
Formatter Maven Plugin (by revelc)
google-java-format
Reformats Java source code to comply with Google Java Style. (by google)
formatter-maven-plugin | google-java-format | |
---|---|---|
1 | 25 | |
291 | 5,730 | |
0.0% | 0.6% | |
8.4 | 8.1 | |
2 days ago | 22 days ago | |
Java | Java | |
Apache License 2.0 | GNU General Public License v3.0 or later |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
formatter-maven-plugin
Posts with mentions or reviews of formatter-maven-plugin.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2021-07-23.
-
What java formatter do you use for formatting source code?
I've been partial to revlc/formatter-maven-plugin for some time
google-java-format
Posts with mentions or reviews of google-java-format.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2025-03-20.
- Fitness Functions - O Check-up contínuo de seu Software
- Como Melhorar seu Código Java: 7 Boas Práticas e Padrões de Desenvolvimento
-
Contribution Instructions: Formate Code and Linting
We had a list of suggested code formation tools, as my code was written in Java I decided to use suggested formatter GoogleJavaFormat. However, I didn't decide to pick suggested tool for Linter. I picked Checkstyle; for the reason, that SpotBugs wasn't available for JDK 22.
-
Tutorial: Build a Java SDK based on OpenAPI Spec
google-java-format: A tool that reformats your code according to Google’s Java style, ensuring a clean, consistent codebase.
-
How to automatically format Java code similar to Rust (rustfmt)?
The code block you pasted is not at all what the Google Java Format utility would do. Don't use VSCode to handle IntelliJ's job :P
-
After a few attempts I'm officially a programmer :^)
Follow a style guide, doesn’t really matter which you choose, you’ll thank me later. This one will work automatically https://github.com/google/google-java-format
-
For Contributors to my OpenSSG
Like Prettier and ESLint in Javascript, I needed to add Java formatting and linting tools. For formatting, I looked at google-java-format, codestyle, and spotless. Since I'm not using Java framework, I can only use plugin to format my code. Although google-java-format does not support configurability, I just chose to follow Google Java format as I believe they have most common language format standard. To use google-java-format in MacOS, go to IntelliJ IDEA -> Preference (Windows: File -> Setting) and search "plugin" menu. Then, find google-java-format using search bar. Now all you need to do is to install the plugin. I didn't have to enable it, I think it needs to be enabled in some cases. You can refer to the documentation. To format your code, go to Code menu and select Reformat code or Reformat file. It will format your code.
-
Coding standards
I cloned a Maven plug-in that enforces Google code style guidelines (modifying a few things, like nesting depth): https://github.com/google/google-java-format
-
I declare as "final" every single variable whose value doesn't change. I also use "this" every time that I'm referring to an attribute, even when there's no ambiguity in not using it
They follow a rectangle rule, which is easy to follow, but can lead to ugly formatting due to excessive indentation in nested statements (which are common using protobuffers). The dart formatter was a lot nicer, and considered human friendly style instead of blindly following the rectangle rule.
-
Creating custom formatter for Java
I spent most of my development career writing simple CRUD applications, recently I read a fascinating article: http://journal.stuffwithstuff.com/2015/09/08/the-hardest-program-ive-ever-written/. It looks like a nice challenge to try creating such a tool. For sure I need first to understand how to build AST etc. I could reuse existing solutions like https://github.com/google/google-java-format, or eclipse fmt, but I would like to understand the whole process, to be able to debug all cases.
What are some alternatives?
When comparing formatter-maven-plugin and google-java-format you can also consider the following projects:
docker-maven-plugin - INACTIVE: A maven plugin for Docker
palantir-java-format - A modern, lambda-friendly, 120 character Java formatter.
eclipse-null-eea-augments - Eclipse External null Annotations (EEA) repository
spotless - Keep your code spotless
fmt-maven-plugin - Opinionated Maven Plugin that formats your Java code.
spring-javaformat