From c96798366009a024537e3ed82ca20bfee6e98f1a Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Mon, 13 Apr 2026 09:33:52 +0200 Subject: [PATCH] Simplify property configuration: replace `pluginGroup` and `pluginName` with `group` and `version` in `gradle.properties`, and update diff filtering in workflow. --- .github/template-cleanup/gradle.properties | 6 ++---- .github/workflows/template-verify.yml | 5 ++--- gradle.properties | 2 -- 3 files changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/template-cleanup/gradle.properties b/.github/template-cleanup/gradle.properties index 626a0e5..f346846 100644 --- a/.github/template-cleanup/gradle.properties +++ b/.github/template-cleanup/gradle.properties @@ -1,7 +1,5 @@ -# IntelliJ Platform Artifacts Repositories -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html - -pluginGroup = %GROUP% -pluginName = %NAME% +group = %GROUP% +version = 0.0.1 pluginRepositoryUrl = https://github.com/%REPOSITORY% diff --git a/.github/workflows/template-verify.yml b/.github/workflows/template-verify.yml index b0514d5..3485d0c 100644 --- a/.github/workflows/template-verify.yml +++ b/.github/workflows/template-verify.yml @@ -31,9 +31,8 @@ jobs: echo "\`\`\`diff" >> $GITHUB_STEP_SUMMARY diff -U 0 \ - -I '^pluginVersion' \ - -I '^pluginGroup' \ - -I '^pluginName' \ + -I '^version' \ + -I '^group' \ -I '^pluginRepositoryUrl' \ --label .github/template-cleanup/gradle.properties \ --label gradle.properties \ diff --git a/gradle.properties b/gradle.properties index ca91d62..faf535b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,3 @@ -# IntelliJ Platform Artifacts Repositories -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html - group = org.jetbrains.plugins.template version = 2.4.1