Skip to content

Commit

Permalink
update the IntelliJ plugin to 1.22.0
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 624993575
  • Loading branch information
plumpy authored and google-java-format Team committed Apr 15, 2024
1 parent c4b467d commit 6e3b852
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 6 additions & 2 deletions idea_plugin/build.gradle.kts
Expand Up @@ -14,15 +14,17 @@
* limitations under the License.
*/

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

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

apply(plugin = "java")

repositories { mavenCentral() }

val googleJavaFormatVersion = "1.21.0"
// https://github.com/google/google-java-format/releases
val googleJavaFormatVersion = "1.22.0"

java {
sourceCompatibility = JavaVersion.VERSION_11
Expand Down Expand Up @@ -61,6 +63,8 @@ tasks {

dependencies {
implementation("com.google.googlejavaformat:google-java-format:${googleJavaFormatVersion}")
// https://mvnrepository.com/artifact/junit/junit
testImplementation("junit:junit:4.13.2")
// https://mvnrepository.com/artifact/com.google.truth/truth
testImplementation("com.google.truth:truth:1.4.2")
}
4 changes: 4 additions & 0 deletions idea_plugin/src/main/resources/META-INF/plugin.xml
Expand Up @@ -35,6 +35,10 @@
]]></description>
<change-notes><![CDATA[
<dl>
<dt>1.22.0.0</dt>
<dd>Updated to use google-java-format 1.22.0.</dd>
<dt>1.21.0.0</dt>
<dd>Updated to use google-java-format 1.21.0.</dd>
<dt>1.20.0.0</dt>
<dd>Updated to use google-java-format 1.20.0.</dd>
<dt>1.19.2.0</dt>
Expand Down

0 comments on commit 6e3b852

Please sign in to comment.