Search Gradle plugins

Version 0.0.20 (latest)

Created 18 March 2024.

Check ABI compatibility at build time

Using the plugins DSL:

plugins {
  id("com.toasttab.expediter") version "0.0.20"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.toasttab.expediter:plugin:0.0.20")
  }
}

apply(plugin = "com.toasttab.expediter")

Using the plugins DSL:

plugins {
  id "com.toasttab.expediter" version "0.0.20"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.toasttab.expediter:plugin:0.0.20"
  }
}

apply plugin: "com.toasttab.expediter"

Learn how to apply plugins to subprojects