Search Gradle plugins

Version 1.6.0

Created 02 January 2018.

Gradle plugin that can run scalafmt as a part of your build.

Using the plugins DSL:

plugins {
  id("cz.alenkacz.gradle.scalafmt") version "1.6.0"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "cz.alenkacz.gradle.scalafmt" version "1.6.0"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects