com.github.mjdetullio.gradle.coverity
Owner: Matthew DeTullio
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)
1.0.10
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.
Using the plugins DSL:
plugins {
id("com.github.mjdetullio.gradle.coverity") version "1.0.10"
}
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.10")
}
}
apply(plugin = "com.github.mjdetullio.gradle.coverity")
Using the plugins DSL:
plugins {
id "com.github.mjdetullio.gradle.coverity" version "1.0.10"
}
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.10"
}
}
apply plugin: "com.github.mjdetullio.gradle.coverity"