settings.gradle.kts 239 B

123456789101112
  1. pluginManagement {
  2. repositories {
  3. gradlePluginPortal()
  4. mavenLocal()
  5. }
  6. plugins {
  7. val appVersionName: String by settings
  8. id("bump-plugin") version appVersionName
  9. }
  10. }
  11. rootProject.name = "bump"