Skip to content

Commit 6e3b852

Browse files
plumpygoogle-java-format Team
authored and
google-java-format Team
committed
update the IntelliJ plugin to 1.22.0
PiperOrigin-RevId: 624993575
1 parent c4b467d commit 6e3b852

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

idea_plugin/build.gradle.kts

+6-2
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,17 @@
1414
* limitations under the License.
1515
*/
1616

17-
plugins { id("org.jetbrains.intellij") version "1.17.2" }
17+
// https://github.com/JetBrains/intellij-platform-gradle-plugin/releases
18+
plugins { id("org.jetbrains.intellij") version "1.17.3" }
1819

1920
apply(plugin = "org.jetbrains.intellij")
2021

2122
apply(plugin = "java")
2223

2324
repositories { mavenCentral() }
2425

25-
val googleJavaFormatVersion = "1.21.0"
26+
// https://github.com/google/google-java-format/releases
27+
val googleJavaFormatVersion = "1.22.0"
2628

2729
java {
2830
sourceCompatibility = JavaVersion.VERSION_11
@@ -61,6 +63,8 @@ tasks {
6163

6264
dependencies {
6365
implementation("com.google.googlejavaformat:google-java-format:${googleJavaFormatVersion}")
66+
// https://mvnrepository.com/artifact/junit/junit
6467
testImplementation("junit:junit:4.13.2")
68+
// https://mvnrepository.com/artifact/com.google.truth/truth
6569
testImplementation("com.google.truth:truth:1.4.2")
6670
}

idea_plugin/src/main/resources/META-INF/plugin.xml

+4
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@
3535
]]></description>
3636
<change-notes><![CDATA[
3737
<dl>
38+
<dt>1.22.0.0</dt>
39+
<dd>Updated to use google-java-format 1.22.0.</dd>
40+
<dt>1.21.0.0</dt>
41+
<dd>Updated to use google-java-format 1.21.0.</dd>
3842
<dt>1.20.0.0</dt>
3943
<dd>Updated to use google-java-format 1.20.0.</dd>
4044
<dt>1.19.2.0</dt>

0 commit comments

Comments
 (0)