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 1.5.61 (latest)

Created 21 January 2016.

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 "1.5.61"
}

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.coverity.ondemand:com.coverity.ondemand.gradle.plugin:1.5.61")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.coverity.ondemand")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.coverity.ondemand:com.coverity.ondemand.gradle.plugin:1.5.61")
      }
    }
    
    apply(plugin = "com.coverity.ondemand")
  • Applying plugins to all subprojects .