com.zyx.lint
Owner: ZhengYangxin
Incremental Scanning for Lint !
https://github.com/ZhengYangxin/ZYXLint
Sources: https://github.com/ZhengYangxin/ZYXLint.git
Version 0.0.3 (latest)
0.0.3
Created 17 December 2018.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Incremental Scanning for Lint !
Using the plugins DSL:
plugins {
id("com.zyx.lint") version "0.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.zyx.lint:ZYXLintPlugin:0.0.3")
}
}
apply(plugin = "com.zyx.lint")
Using the plugins DSL:
plugins {
id "com.zyx.lint" version "0.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.zyx.lint:ZYXLintPlugin:0.0.3"
}
}
apply plugin: "com.zyx.lint"