Search Gradle plugins

Version 0.1.3 (latest)

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"

Learn how to apply plugins to subprojects