com.toasttab.expediter
Owner: Oleg Golberg
Check ABI compatibility at build time
https://github.com/open-toast/expediter
Sources: https://github.com/open-toast/expediter
Version 0.0.23 (latest)
0.0.23
Created 06 November 2024.
Check ABI compatibility at build time
Using the plugins DSL:
plugins {
id("com.toasttab.expediter") version "0.0.23"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.toasttab.expediter:plugin:0.0.23")
}
}
apply(plugin = "com.toasttab.expediter")
Using the plugins DSL:
plugins {
id "com.toasttab.expediter" version "0.0.23"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.toasttab.expediter:plugin:0.0.23"
}
}
apply plugin: "com.toasttab.expediter"