Search Gradle plugins

Version 0.9.6

Created 24 November 2014.

No version description available.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("pl.allegro.tech.build:axion-release-plugin:0.9.6")
  }
}

apply(plugin = "pl.allegro.tech.build.axion.release")

Using the plugins DSL:

plugins {
  id "pl.allegro.tech.build.axion.release" version "0.9.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "pl.allegro.tech.build:axion-release-plugin:0.9.6"
  }
}

apply plugin: "pl.allegro.tech.build.axion.release"

Learn how to apply plugins to subprojects