Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update the IntelliJ plugin to 1.22.0 #1095

Merged
merged 1 commit into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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