Search Gradle plugins

Version 0.9.10

0.9.10

Created 30 October 2019.

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.9.10"
}

See also:

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