From 51dec50ef2470cd5e0e673da2914213d139f8260 Mon Sep 17 00:00:00 2001 From: vitaliy Date: Sun, 20 Oct 2024 17:31:00 +0300 Subject: [PATCH] Update build.gradle to configure plugin properties Replaced patchPluginXml with pluginConfiguration. Added id, name, version, and description properties for better clarity and management of the plugin configuration. --- build.gradle | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 8dd400f41..eed1a946d 100644 --- a/build.gradle +++ b/build.gradle @@ -42,8 +42,12 @@ intellijPlatform { version = ideaVersion projectName = 'com.magento.idea.magento2plugin' - patchPluginXml { - changeNotes = provider { changelog.getLatest().toHTML() } + pluginConfiguration { + id = 'com.magento.idea.magento2plugin' + name = 'Magento PhpStorm' + version = '5.4.0' + description = 'This is a PhpStorm IDE plugin for a better Magento 2 development workflow.' + changeNotes = provider { changelog.getLatest().toHTML() } as Provider } }