A maven plugin that automatically deploys google-java-format code formatter as a pre-commit
git hook.
On commit, the hook will automatically format staged java files.
- #64
google-java-format 1.8
dropped support for java 8. The minimum supported runtime version for the plugin is JDK 11.
- #37 To prevent conflicts with other plugins all keys are now
prefixed with
gcf
. e.g.-DglobPattern=**/*
becomes-Dgcf.globPattern=**/*
- #38 To avoid infringement to Apache Maven Trademark,
the plugin was renamed to
git-code-format-maven-plugin
. Its new coordinates arecom.cosium.code:git-code-format-maven-plugin
.
1.x
documentation can be found here
Add this to your maven project root pom.xml :
<build>
<plugins>
<plugin>
<groupId>com.cosium.code</groupId>
<artifactId>git-code-format-maven-plugin</artifactId>
<version>${git-code-format-maven-plugin.version}</version>
<executions>
<!-- On commit, format the modified java files -->
<execution>
<id>install-formatter-hook</id>
<goals>
<goal>install-hooks</goal>
</goals>
</execution>
<!-- On Maven verify phase, fail if any file
(including unmodified) is badly formatted -->
<execution>
<id>validate-code-format</id>
<goals>
<goal>validate-code-format</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
mvn git-code-format:format-code -Dgcf.globPattern=**/*
mvn git-code-format:validate-code-format -Dgcf.globPattern=**/*
The plugin allows you to tweak Google Java Format options :
<build>
<plugins>
<plugin>
<groupId>com.cosium.code</groupId>
<artifactId>git-code-format-maven-plugin</artifactId>
<version>${git-code-format-maven-plugin.version}</version>
<executions>
<!-- ... -->
</executions>
<configuration>
<googleJavaFormatOptions>
<aosp>false</aosp>
<fixImportsOnly>false</fixImportsOnly>
<skipSortingImports>false</skipSortingImports>
<skipRemovingUnusedImports>false</skipRemovingUnusedImports>
</googleJavaFormatOptions>
</configuration>
</plugin>
</plugins>
</build>
Documentation from the google-java-format CLI tool :
--aosp, -aosp, -a
Use AOSP style instead of Google Style (4-space indentation).
--fix-imports-only
Fix import order and remove any unused imports, but do no other formatting.
--skip-sorting-imports
Do not fix the import order. Unused imports will still be removed.
--skip-removing-unused-imports
Do not remove unused imports. Imports will still be sorted.
You only need to put the plugin in your root project pom.xml. By default all submodules will be handled.
Do I need to run mvn initialize or is that a stage that happens automatically when I run mvn compile or mvn test?
initialize
is the first phase of the Maven lifecycle. Any goal that you perform (e.g. compile
or test
) will automatically trigger initialize
and thus trigger the git pre-commit hook installation.
If after setting up the plugin in your pom, you just executed a maven goal, the only expected output is a pre-commit hook installed in your .git/hooks
directory. To trigger the automatic formatting, you have to perform a commit of a modified java file.
You can also manually format or validate any file.
I inherit an enterprise parent pom, which I cannot modify, with formatting plugin specified, and I need to turn off formatting for my group's project.
Either use add a <skip>true</skip>
configuration in the inheriting project or set the gcf.skip
property to true.
On the initialize
maven phase, git-code-format:install-hooks
installs a git pre-commit
hook that looks like this :
#!/bin/bash
"./.git/hooks/${project.artifactId}.git-code-format.pre-commit.sh"
and .git/hooks/${project.artifactId}.git-code-format.pre-commit.sh
has the following content:
#!/bin/bash
set -e
"${env.M2_HOME}/bin/mvn" -f "${project.basedir}/pom.xml" git-code-format:on-pre-commit
On pre-commit
git phase, the hook triggers the git-code-format:on-pre-commit
which formats the code of the modified java files using google-java-format
.
If you wish to modify the output of the pre-commit hook, you can set the preCommitHookPipeline
configuration.
To completely ignore the hook output, you could use the following configuration:
<configuration>
<preCommitHookPipeline>>/dev/null</preCommitHookPipeline>
</configuration>
To display error lines from the maven output and fail build with any errors, you could use the following configuration:
<configuration>
<preCommitHookPipeline>| grep -F '[ERROR]' || exit 0 && exit 1</preCommitHookPipeline>
</configuration>