Search Gradle plugins

org.openrewrite.build.recipe-library-base

Builds recipe libraries with the minimum of opinions or conventions about any other aspect of the build. Does not configure artifact repositories or publishing. Use org.openrewrite.build.recipe-library if you want to build a recipe library as OSS.

https://github.com/openrewrite/rewrite-build-gradle-plugin

Sources: https://github.com/openrewrite/rewrite-build-gradle-plugin.git

Version 1.15.0 (latest)

Created 25 April 2024.

Builds recipe libraries with the minimum of opinions or conventions about any other aspect of the build. Does not configure artifact repositories or publishing. Use org.openrewrite.build.recipe-library if you want to build a recipe library as OSS.

Using the plugins DSL:

plugins {
  id("org.openrewrite.build.recipe-library-base") version "1.15.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.openrewrite:rewrite-build-gradle-plugin:1.15.0")
  }
}

apply(plugin = "org.openrewrite.build.recipe-library-base")

Using the plugins DSL:

plugins {
  id "org.openrewrite.build.recipe-library-base" version "1.15.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.openrewrite:rewrite-build-gradle-plugin:1.15.0"
  }
}

apply plugin: "org.openrewrite.build.recipe-library-base"

Learn how to apply plugins to subprojects