Skip to content

Commit

Permalink
Update build.gradle to configure plugin properties
Browse files Browse the repository at this point in the history
Replaced patchPluginXml with pluginConfiguration. Added id, name, version, and description properties for better clarity and management of the plugin configuration.
  • Loading branch information
VitaliyBoyko committed Oct 20, 2024
1 parent bc70b52 commit 51dec50
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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<? extends String>
}
}

Expand Down

0 comments on commit 51dec50

Please sign in to comment.