Skip to content

Commit 74c510a

Browse files
plumpygoogle-java-format Team
authored and
google-java-format Team
committed
Update the IntelliJ plugin to gfj 1.20.0.
PiperOrigin-RevId: 610801461
1 parent cea3782 commit 74c510a

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

idea_plugin/build.gradle.kts

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

17-
plugins { id("org.jetbrains.intellij") version "1.16.1" }
17+
plugins { id("org.jetbrains.intellij") version "1.17.2" }
1818

1919
apply(plugin = "org.jetbrains.intellij")
2020

2121
apply(plugin = "java")
2222

2323
repositories { mavenCentral() }
2424

25-
val googleJavaFormatVersion = "1.19.2"
25+
val googleJavaFormatVersion = "1.20.0"
2626

2727
java {
2828
sourceCompatibility = JavaVersion.VERSION_11
@@ -62,5 +62,5 @@ tasks {
6262
dependencies {
6363
implementation("com.google.googlejavaformat:google-java-format:${googleJavaFormatVersion}")
6464
testImplementation("junit:junit:4.13.2")
65-
testImplementation("com.google.truth:truth:1.2.0")
65+
testImplementation("com.google.truth:truth:1.4.1")
6666
}

idea_plugin/src/main/java/com/google/googlejavaformat/intellij/GoogleJavaFormatConfigurable.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
import javax.swing.JPanel;
3434
import org.jetbrains.annotations.Nls;
3535
import org.jetbrains.annotations.NotNull;
36-
import org.jspecify.annotations.Nullable;
36+
import org.jetbrains.annotations.Nullable;
3737

3838
class GoogleJavaFormatConfigurable extends BaseConfigurable implements SearchableConfigurable {
3939

idea_plugin/src/main/java/com/google/googlejavaformat/intellij/GoogleJavaFormatSettings.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import com.intellij.openapi.components.Storage;
2323
import com.intellij.openapi.project.Project;
2424
import org.jetbrains.annotations.NotNull;
25-
import org.jspecify.annotations.Nullable;
25+
import org.jetbrains.annotations.Nullable;
2626

2727
@State(
2828
name = "GoogleJavaFormatSettings",

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

+2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@
3535
]]></description>
3636
<change-notes><![CDATA[
3737
<dl>
38+
<dt>1.20.0.0</dt>
39+
<dd>Updated to use google-java-format 1.20.0.</dd>
3840
<dt>1.19.2.0</dt>
3941
<dd>Updated to use google-java-format 1.19.2.</dd>
4042
<dt>1.17.0.0</dt>

0 commit comments

Comments
 (0)