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.1-dev04-a2aabb6
Created 11 June 2023.
A plugin for applying WartRemover code linting to scala, by means of a configuration file.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.jahrim.wartremover") version "0.1.1-dev04-a2aabb6"
}
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("io.github.jahrim.wartremover:io.github.jahrim.wartremover.gradle.plugin:0.1.1-dev04-a2aabb6") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.jahrim.wartremover") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.jahrim.wartremover:io.github.jahrim.wartremover.gradle.plugin:0.1.1-dev04-a2aabb6") } } apply(plugin = "io.github.jahrim.wartremover")
- Applying plugins to all subprojects .