Skip to content

Commit d497735

Browse files
authored
Update 'google-java-format' 1.7 -> 1.9 (#66)
1 parent 0ecbe52 commit d497735

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66
A maven plugin that automatically deploys [google-java-format](https://github.com/google/google-java-format) code formatter as a `pre-commit` git hook.
77
On commit, the hook will automatically format staged java files.
88

9+
### Breaking changes between 2.x and 3.x
10+
11+
* [#64](https://github.com/Cosium/git-code-format-maven-plugin/issues/64) `google-java-format 1.8` [dropped support for java 8](https://github.com/google/google-java-format/releases/tag/google-java-format-1.8).
12+
The minimum supported runtime version for the plugin is JDK 11.
13+
914
### Breaking changes between 1.x and 2.x
1015

1116
* [#37](https://github.com/Cosium/git-code-format-maven-plugin/issues/37) To prevent conflicts with other plugins all keys are now

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.cosium.code</groupId>
66
<artifactId>git-code-format-maven-plugin</artifactId>
7-
<version>2.8-SNAPSHOT</version>
7+
<version>3.0-SNAPSHOT</version>
88
<packaging>maven-plugin</packaging>
99

1010
<name>Git Code Format Maven Plugin</name>
@@ -40,7 +40,7 @@
4040
<dependency>
4141
<groupId>com.google.googlejavaformat</groupId>
4242
<artifactId>google-java-format</artifactId>
43-
<version>1.7</version>
43+
<version>1.9</version>
4444
</dependency>
4545
<dependency>
4646
<groupId>org.eclipse.jgit</groupId>

0 commit comments

Comments
 (0)