Search Gradle plugins

com.worker8.android_lint_reporter

Gradle Plugin to parse, format, report Android Lint result back to Github Pull Request using Github Actions

https://github.com/worker8/AndroidLintReporter

Sources: https://github.com/worker8/AndroidLintReporter

Version 2.0.0-debug3

Created 07 April 2021.

Gradle Plugin to parse, format, report Android Lint result back to Github Pull Request using Github Actions

Using the plugins DSL:

plugins {
  id("com.worker8.android_lint_reporter") version "2.0.0-debug3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.worker8.android_lint_reporter:android_lint_reporter:2.0.0-debug3")
  }
}

apply(plugin = "com.worker8.android_lint_reporter")

Using the plugins DSL:

plugins {
  id "com.worker8.android_lint_reporter" version "2.0.0-debug3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.worker8.android_lint_reporter:android_lint_reporter:2.0.0-debug3"
  }
}

apply plugin: "com.worker8.android_lint_reporter"

Learn how to apply plugins to subprojects