Search Gradle plugins

Version 0.14.2

0.14.2

Created 21 July 2021.

Gradle plugin to apply WartRemover (Scala linting tool)

Add this plugin to your build using the plugins DSL:

plugins {
  id("cz.augi.gradle.wartremover") version "0.14.2"
}

See also:

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