Search Gradle plugins

com.fizzpod.sweeney

Gradle plugin providing ability to enforce build rules.

https://github.com/boxheed/gradle-sweeney-plugin

Version 5.0.0 (latest)

5.0.0

Created 28 August 2024.

Gradle plugin providing ability to enforce build rules.

Using the plugins DSL:

plugins {
  id("com.fizzpod.sweeney") version "5.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.fizzpod:gradle-sweeney-plugin:5.0.0")
  }
}

apply(plugin = "com.fizzpod.sweeney")

Using the plugins DSL:

plugins {
  id "com.fizzpod.sweeney" version "5.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.fizzpod:gradle-sweeney-plugin:5.0.0"
  }
}

apply plugin: "com.fizzpod.sweeney"

Learn how to apply plugins to subprojects