Search Gradle plugins

Version 1.5 (latest)

Created 05 December 2023.

Inheritance of dependent modules resources with env filtering

Using the plugins DSL:

plugins {
  id("ru.raysmith.setupapp") version "1.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ru.raysmith:setupapp:1.5")
  }
}

apply(plugin = "ru.raysmith.setupapp")

Using the plugins DSL:

plugins {
  id "ru.raysmith.setupapp" version "1.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ru.raysmith:setupapp:1.5"
  }
}

apply plugin: "ru.raysmith.setupapp"

Learn how to apply plugins to subprojects