Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("pl.allegro.tech.build.axion-release") version "1.14.3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("pl.allegro.tech.build:axion-release-plugin:1.14.3")
      }
    }
    
    apply(plugin = "pl.allegro.tech.build.axion-release")
  • Applying plugins to all subprojects .