Search Gradle plugins

Version 0.1.0 (latest)

Created 02 December 2018.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.fraenkelc:apiscanner:0.1.0")
  }
}

apply(plugin = "com.github.fraenkelc.apiscanner.ApiScannerPlugin")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.fraenkelc:apiscanner:0.1.0"
  }
}

apply plugin: "com.github.fraenkelc.apiscanner.ApiScannerPlugin"

Learn how to apply plugins to subprojects