com.vouncherstudios.strawberry
Owner: Luís Mendes
A gradle plugin to apply common organization build settings.
https://github.com/vouncherstudios/strawberry
Sources: https://github.com/vouncherstudios/strawberry
Version 1.0.1 (latest)
1.0.1
Created 25 July 2024.
A gradle plugin to apply common organization build settings.
Using the plugins DSL:
plugins {
id("com.vouncherstudios.strawberry") version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.vouncherstudios:strawberry:1.0.1")
}
}
apply(plugin = "com.vouncherstudios.strawberry")
Using the plugins DSL:
plugins {
id "com.vouncherstudios.strawberry" version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.vouncherstudios:strawberry:1.0.1"
}
}
apply plugin: "com.vouncherstudios.strawberry"