Search Gradle plugins

biz.davidpearson.gradle.androidlinttosonar

A Gradle plugin that converts Android Lint XML files to a SonarQube Generic Issue Import Format JSON file.

https://davidpearson.biz/

Sources: https://github.com/GrecoJava/AndroidLintToSonar

Version 1.0.0-alpha01 (latest)

1.0.0-alpha01

Created 11 October 2020.

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 A Gradle plugin that converts Android Lint XML files to a SonarQube Generic Issue Import Format JSON file.

Add this plugin to your build using the plugins DSL:

plugins {
  id("biz.davidpearson.gradle.androidlinttosonar") version "1.0.0-alpha01"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.biz.davidpearson.gradle:AndroidLintToSonar:1.0.0-alpha01")
      }
    }
    
    apply(plugin = "biz.davidpearson.gradle.androidlinttosonar")
  • Applying plugins to all subprojects .