Search Gradle plugins

Version 2.4.1

2.4.1

Created 02 September 2018.

Allows to parse Java byte code to find invocations of method/class/field signatures and fail build.

Add this plugin to your build using the plugins DSL:

plugins {
  id("de.thetaphi.forbiddenapis") version "2.4.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("de.thetaphi:forbiddenapis:2.4.1")
      }
    }
    
    apply(plugin = "de.thetaphi.forbiddenapis")
  • Applying plugins to all subprojects .