From ade9797ef7689de583f6e5e81b9077df885911df Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Fri, 10 Apr 2026 23:06:29 +0200 Subject: [PATCH] Remove redundant `pluginName` property from `gradle.properties` and `build.gradle.kts` as it is already set in the `plugin.xml` --- CHANGELOG.md | 1 + build.gradle.kts | 2 -- gradle.properties | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6234941..91c3f08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ - Remove redundant `intellijPlatform.pluginVerification` configuration from `build.gradle.kts` - Remove redundant `java` plugin declaration from `build.gradle.kts` - Remove redundant `pluginVersion` configuration from `build.gradle.kts`. +- Remove redundant `pluginName` property from `gradle.properties` and `build.gradle.kts` as it is already set in the `plugin.xml` ## [2.4.1] - 2026-03-20 diff --git a/build.gradle.kts b/build.gradle.kts index 0be8fa9..485adc5 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -35,8 +35,6 @@ dependencies { // Configure IntelliJ Platform Gradle Plugin - read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-extension.html intellijPlatform { pluginConfiguration { - name = providers.gradleProperty("pluginName") - // Extract the section from README.md and provide for the plugin's manifest description = providers.fileContents(layout.projectDirectory.file("README.md")).asText.map { val start = "" diff --git a/gradle.properties b/gradle.properties index 111ca3e..ba17359 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,6 @@ group = org.jetbrains.plugins.template version = 2.4.1 -pluginName = IntelliJ Platform Plugin Template pluginRepositoryUrl = https://github.com/JetBrains/intellij-platform-plugin-template # SemVer format -> https://semver.org