Owner:
Michal Augustýn
Gradle plugin to apply wartremover (Scala linting tool)
Version 0.17.0
Created 22 December 2023.
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.17.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("cz.augi.gradle.wartremover:cz.augi.gradle.wartremover.gradle.plugin:0.17.0") }It can then be applied in the precompiled script plugin:plugins { id("cz.augi.gradle.wartremover") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("cz.augi.gradle.wartremover:cz.augi.gradle.wartremover.gradle.plugin:0.17.0") } } apply(plugin = "cz.augi.gradle.wartremover") - Applying plugins to all subprojects .