Search Gradle plugins

Version 1.7 (latest)

1.7

Created 09 July 2024.

Inheritance of dependent modules resources with env filtering

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "ru.raysmith.setupapp"

Learn how to apply plugins to subprojects