Search Gradle plugins

Version 0.5.4

0.5.4

Created 29 August 2024.

Configures the Gradle build by automatically detecting subprojects and composite builds.

Using the plugins DSL:

plugins {
  id("com.link-intersystems.gradle.multi-module") version "0.5.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.link-intersystems.gradle.plugins:multi-module-plugin:0.5.4")
  }
}

apply(plugin = "com.link-intersystems.gradle.multi-module")

Using the plugins DSL:

plugins {
  id "com.link-intersystems.gradle.multi-module" version "0.5.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.link-intersystems.gradle.plugins:multi-module-plugin:0.5.4"
  }
}

apply plugin: "com.link-intersystems.gradle.multi-module"

Learn how to apply plugins to subprojects