Search Gradle plugins

Version 1.0.1

Created 25 November 2019.

Simple DSL plugin for managing large scale multi-application multi-project in mono-repo

Using the plugins DSL:

plugins {
  id("com.linecorp.build-recipe-plugin") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.linecorp.support.project.multi:build-recipe-plugin:1.0.1")
  }
}

apply(plugin = "com.linecorp.build-recipe-plugin")

Using the plugins DSL:

plugins {
  id "com.linecorp.build-recipe-plugin" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.linecorp.support.project.multi:build-recipe-plugin:1.0.1"
  }
}

apply plugin: "com.linecorp.build-recipe-plugin"

Learn how to apply plugins to subprojects