Search Gradle plugins

Version 1.0.0

1.0.0

Created 13 July 2024.

A gradle plugin to apply common organization build settings.

Using the plugins DSL:

plugins {
  id("com.vouncherstudios.strawberry") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.vouncherstudios:strawberry:1.0.0")
  }
}

apply(plugin = "com.vouncherstudios.strawberry")

Using the plugins DSL:

plugins {
  id "com.vouncherstudios.strawberry" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.vouncherstudios:strawberry:1.0.0"
  }
}

apply plugin: "com.vouncherstudios.strawberry"

Learn how to apply plugins to subprojects