Search Gradle plugins

Version 1.0.8 (latest)

1.0.8

Created 26 July 2024.

Utilities for keeping generated code checked in in sync with the generation process

Using the plugins DSL:

plugins {
  id("co.elastic.check-in-generated") version "1.0.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("co.elastic.gradle:check-in-generated:1.0.8")
  }
}

apply(plugin = "co.elastic.check-in-generated")

Using the plugins DSL:

plugins {
  id "co.elastic.check-in-generated" version "1.0.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "co.elastic.gradle:check-in-generated:1.0.8"
  }
}

apply plugin: "co.elastic.check-in-generated"

Learn how to apply plugins to subprojects