com.anagaf.classycle
Owner: Andrey Agafonov
Gradle plugin for Classycle dependency analyzer with Android support
https://github.com/anagaf/classycle-gradle-plugin
Sources: https://github.com/anagaf/classycle-gradle-plugin
Version 1.0.3 (latest)
1.0.3
Created 17 October 2018.
Gradle plugin for Classycle dependency analyzer with Android support
Using the plugins DSL:
plugins {
id("com.anagaf.classycle") version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.anagaf:classycle-gradle-plugin:1.0.3")
}
}
apply(plugin = "com.anagaf.classycle")
Using the plugins DSL:
plugins {
id "com.anagaf.classycle" version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.anagaf:classycle-gradle-plugin:1.0.3"
}
}
apply plugin: "com.anagaf.classycle"