cz.augi.gradle.wartremover
Owner:
Michal Augustýn
Gradle plugin to apply wartremover (Scala linting tool)
https://github.com/augi/gradle-wartremover
Sources: https://github.com/augi/gradle-wartremover
Version 0.12.0
Created 14 July 2020.
Gradle plugin to apply WartRemover (Scala linting tool)
Using the plugins DSL:
plugins {
id("cz.augi.gradle.wartremover") version "0.12.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.cz.augi:gradle-wartremover:0.12.0")
}
}
apply(plugin = "cz.augi.gradle.wartremover")
Using the plugins DSL:
plugins {
id "cz.augi.gradle.wartremover" version "0.12.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.cz.augi:gradle-wartremover:0.12.0"
}
}
apply plugin: "cz.augi.gradle.wartremover"