Search Gradle plugins

Version 1.2.0

1.2.0

Created 05 January 2017.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.cz.alenkacz:gradle-scalafmt:1.2.0")
      }
    }
    
    apply(plugin = "cz.alenkacz.gradle.scalafmt")
  • Applying plugins to all subprojects .