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.17.1 (latest)
Created 27 August 2024.
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.1"
}
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.1") }
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.1") } } apply(plugin = "cz.augi.gradle.wartremover")
- Applying plugins to all subprojects .