Search Gradle plugins

com.github.mjdetullio.gradle.coverity

A plugin for integrating with Coverity, a static analysis platform. Adds tasks to the project that will emit, analyze, and commit data using Coverity Analysis Tools that are installed on the user's machine. Supports analysis of Java code for Java and/or Android projects.

https://github.com/mjdetullio/gradle-coverity-plugin

Sources: https://github.com/mjdetullio/gradle-coverity-plugin

Version 1.0.10 (latest)

Created 11 January 2016.

A plugin for integrating with Coverity, a static analysis platform. Adds tasks to the project that will emit, analyze, and commit data using Coverity Analysis Tools that are installed on the user's machine. Supports analysis of Java code for Java and/or Android projects.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.mjdetullio.gradle.coverity") version "1.0.10"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.github.mjdetullio.gradle.coverity:com.github.mjdetullio.gradle.coverity.gradle.plugin:1.0.10")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.github.mjdetullio.gradle.coverity")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.mjdetullio.gradle.coverity:com.github.mjdetullio.gradle.coverity.gradle.plugin:1.0.10")
      }
    }
    
    apply(plugin = "com.github.mjdetullio.gradle.coverity")
  • Applying plugins to all subprojects .