plugins { id 'java' id 'org.jetbrains.intellij' version '1.17.1' } group = 'org.cobalyte' version = '1.0.0' repositories { mavenCentral() } // Configure Gradle IntelliJ Plugin intellij { version = '2023.1.5' type = 'IC' // 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 = '241.*' pluginDescription = ''' A plugin for JetBrains IDEs that automatically prefixes commit messages with information extracted from branch names. Features: Example: ''' changeNotes = 'Initial release of the Commit Message Prefixer plugin' } test { useJUnitPlatform() }