Search Gradle plugins

Version 1.21.3 (latest)

1.21.3

Created 27 August 2024.

Gradle plugin to apply scalafmt (Scala linting tool)

Using the plugins DSL:

plugins {
  id("cz.augi.gradle.scalafmt") version "1.21.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("cz.augi:gradle-scalafmt:1.21.3")
  }
}

apply(plugin = "cz.augi.gradle.scalafmt")

Using the plugins DSL:

plugins {
  id "cz.augi.gradle.scalafmt" version "1.21.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "cz.augi:gradle-scalafmt:1.21.3"
  }
}

apply plugin: "cz.augi.gradle.scalafmt"

Learn how to apply plugins to subprojects