org.openrewrite.build.recipe-examples
Owner: Moderne, Inc.
Produces a `/META-INF/rewrite/recipe-example.yml` file containing recipe examples
https://github.com/openrewrite/rewrite-build-gradle-plugin
Sources: https://github.com/openrewrite/rewrite-build-gradle-plugin.git
Version 1.17.4 (latest)
1.17.4
Created 23 October 2024.
Produces a `/META-INF/rewrite/recipe-example.yml` file containing recipe examples
Using the plugins DSL:
plugins {
id("org.openrewrite.build.recipe-examples") version "1.17.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.openrewrite:rewrite-build-gradle-plugin:1.17.4")
}
}
apply(plugin = "org.openrewrite.build.recipe-examples")
Using the plugins DSL:
plugins {
id "org.openrewrite.build.recipe-examples" version "1.17.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.openrewrite:rewrite-build-gradle-plugin:1.17.4"
}
}
apply plugin: "org.openrewrite.build.recipe-examples"