Search Gradle plugins

com.coverity.ondemand

Gradle plugin for static code analysis with the Coverity Code Advisor On Demand service

http://ondemand.coverity.com

Sources: https://github.com/Coverity-RnD/coverity-service

Version 0.1.5-SNAPSHOT

0.1.5-SNAPSHOT

Created 22 May 2015.

Gradle plugin for static code analysis with the Coverity Code Advisor On Demand service

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.coverity.ondemand") version "0.1.5-SNAPSHOT"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.coverity:ondemand-gradle-plugin:0.1.5-SNAPSHOT")
      }
    }
    
    apply(plugin = "com.coverity.ondemand")
  • Applying plugins to all subprojects .