com.coverity.ondemand
Owner: Marat Boshernitsan
Gradle plugin for static code analysis with the Coverity Code Advisor On Demand service
Sources: https://github.com/Coverity-RnD/coverity-service
Version 1.5.61 (latest)
1.5.61
Created 21 January 2016.
Gradle plugin for static code analysis with the Coverity Code Advisor On Demand service
Using the plugins DSL:
plugins {
id("com.coverity.ondemand") version "1.5.61"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.coverity:ondemand-gradle-plugin:1.5.61")
}
}
apply(plugin = "com.coverity.ondemand")
Using the plugins DSL:
plugins {
id "com.coverity.ondemand" version "1.5.61"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.coverity:ondemand-gradle-plugin:1.5.61"
}
}
apply plugin: "com.coverity.ondemand"