From f3f8b981b0584c210a398f8cedc348e5b8f1a180 Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Fri, 10 Apr 2026 22:58:00 +0200 Subject: [PATCH] Simplify property configuration by removing redundant `pluginGroup` reference from `build.gradle.kts` and updating `gradle.properties`. --- CHANGELOG.md | 1 + build.gradle.kts | 1 - gradle.properties | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1917662..dd2cd30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ - Migrate IntelliJ Platform repository configuration to `settings.gradle.kts` - Dependencies - upgrade `org.jetbrains.intellij.platform` to `2.14.0` +- Simplify property configuration by removing redundant `pluginGroup` reference from `build.gradle.kts` and updating `gradle.properties`. ### Removed diff --git a/build.gradle.kts b/build.gradle.kts index f9388df..373a373 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -10,7 +10,6 @@ plugins { alias(libs.plugins.kover) // Gradle Kover Plugin } -group = providers.gradleProperty("pluginGroup").get() version = providers.gradleProperty("pluginVersion").get() // Dependencies are managed with Gradle version catalog - read more: https://docs.gradle.org/current/userguide/version_catalogs.html diff --git a/gradle.properties b/gradle.properties index f32341b..200d20f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ # IntelliJ Platform Artifacts Repositories -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html -pluginGroup = org.jetbrains.plugins.template +group = org.jetbrains.plugins.template pluginName = IntelliJ Platform Plugin Template pluginRepositoryUrl = https://github.com/JetBrains/intellij-platform-plugin-template # SemVer format -> https://semver.org