Search Gradle plugins

Version 1.17.1

Created 20 April 2021.

Gradle plugin to apply scalafmt (Scala linting tool)

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects