Search Gradle plugins

Version 1.0.201

1.0.201

Created 07 July 2020.

Plugin that configures 'findbugs' plugin if it's applied. Min Gradle version: 4.5.

Add this plugin to your build using the plugins DSL:

plugins {
  id("name.remal.findbugs-settings") version "1.0.201"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("name.remal:gradle-plugins:1.0.201")
      }
    }
    
    apply(plugin = "name.remal.findbugs-settings")
  • Applying plugins to all subprojects .