Search Gradle plugins

com.github.fraenkelc.apiscanner.ApiScannerPlugin

Plugin that makes suggestions for api and implementation dependencies based on bytecode analysis.

https://github.com/fraenkelc/apiscanner

Sources: https://github.com/fraenkelc/apiscanner

Version 0.1.0 (latest)

0.1.0

Created 02 December 2018.

Plugin that makes suggestions for api and implementation dependencies based on bytecode analysis.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.fraenkelc.apiscanner.ApiScannerPlugin") version "0.1.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.fraenkelc:apiscanner:0.1.0")
      }
    }
    
    apply(plugin = "com.github.fraenkelc.apiscanner.ApiScannerPlugin")
  • Applying plugins to all subprojects .