Search Gradle plugins

Version 0.0.7

Created 02 November 2023.

Check ABI compatibility at build time

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.toasttab.expediter"

Learn how to apply plugins to subprojects