Search Gradle plugins

Version 0.16.1

Created 29 June 2022.

Gradle plugin to apply WartRemover (Scala linting tool)

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "cz.augi.gradle.wartremover" version "0.16.1"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects