Skip to content

Commit 51dec50

Browse files
committed
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.
1 parent bc70b52 commit 51dec50

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

build.gradle

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,12 @@ intellijPlatform {
4242
version = ideaVersion
4343
projectName = 'com.magento.idea.magento2plugin'
4444

45-
patchPluginXml {
46-
changeNotes = provider { changelog.getLatest().toHTML() }
45+
pluginConfiguration {
46+
id = 'com.magento.idea.magento2plugin'
47+
name = 'Magento PhpStorm'
48+
version = '5.4.0'
49+
description = 'This is a PhpStorm IDE plugin for a better Magento 2 development workflow.'
50+
changeNotes = provider { changelog.getLatest().toHTML() } as Provider<? extends String>
4751
}
4852
}
4953

0 commit comments

Comments
 (0)