org.openrewrite.build.recipe-author-attribution
Owner:
Moderne, Inc.
Produces a `/META-INF/rewrite/recipe-authors.yml` file containing recipe author attribution
https://github.com/openrewrite/rewrite-build-gradle-plugin
Version 1.12.0 (latest)
Created 06 June 2023.
Produces a `/META-INF/rewrite/recipe-authors.yml` file containing recipe author attribution
Using the plugins DSL:
plugins {
id("org.openrewrite.build.recipe-author-attribution") version "1.12.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.openrewrite:rewrite-build-gradle-plugin:1.12.0")
}
}
apply(plugin = "org.openrewrite.build.recipe-author-attribution")
Using the plugins DSL:
plugins {
id "org.openrewrite.build.recipe-author-attribution" version "1.12.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.openrewrite:rewrite-build-gradle-plugin:1.12.0"
}
}
apply plugin: "org.openrewrite.build.recipe-author-attribution"