Search Gradle plugins

Version 3.0.0 (latest)

3.0.0

Created 25 June 2024.

A plugin that configures Spotless on projects

Add this plugin to your build using the plugins DSL:

plugins {
  id("net.neoforged.gradleutils.spotless") version "3.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("net.neoforged.gradleutils:GradleUtils:3.0.0")
      }
    }
    
    apply(plugin = "net.neoforged.gradleutils.spotless")
  • Applying plugins to all subprojects .