com.github.fraenkelc.apiscanner.ApiScannerPlugin
Owner: Christian Fränkel
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.
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"