plugins { id 'java' id 'org.jetbrains.intellij' version '1.17.1' } group = 'org.cobalyte' version = '1.2.1' repositories { mavenCentral() } // Configure Gradle IntelliJ Plugin intellij { version = '2025.1' type = 'RD' // Target IDE Platform - IC for IntelliJ IDEA Community Edition } dependencies { testImplementation platform('org.junit:junit-bom:5.10.0') testImplementation 'org.junit.jupiter:junit-jupiter' } // Configure plugin metadata patchPluginXml { sinceBuild = '231' untilBuild = '' pluginDescription = ''' A plugin for JetBrains IDEs that automatically prefixes commit messages with information extracted from branch names. Features: Example: ''' changeNotes = '''

Version 1.2.1

Version 1.2.0

Version 1.1.0

''' } test { useJUnitPlatform() }