io.github.jahrim.wartremover
Owner: Jahrim Gabriele Cesario
A plugin for applying WartRemover code linting to scala, by means of a configuration file.
https://github.com/ldss-project/wartremover-gradle-plugin
Sources: https://github.com/ldss-project/wartremover-gradle-plugin.git
Version 0.1.3 (latest)
0.1.3
Created 05 September 2023.
A plugin for applying WartRemover code linting to scala, by means of a configuration file.
Using the plugins DSL:
plugins {
id("io.github.jahrim.wartremover") version "0.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.jahrim:wartremover:0.1.3")
}
}
apply(plugin = "io.github.jahrim.wartremover")
Using the plugins DSL:
plugins {
id "io.github.jahrim.wartremover" version "0.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.jahrim:wartremover:0.1.3"
}
}
apply plugin: "io.github.jahrim.wartremover"