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.8

Created 29 December 2015.

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.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.mjdetullio.gradle:coverity-plugin:1.0.8")
  }
}

apply(plugin = "com.github.mjdetullio.gradle.coverity")

Using the plugins DSL:

plugins {
  id "com.github.mjdetullio.gradle.coverity" version "1.0.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.mjdetullio.gradle:coverity-plugin:1.0.8"
  }
}

apply plugin: "com.github.mjdetullio.gradle.coverity"

Learn how to apply plugins to subprojects