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.7-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.7-SNAPSHOT"
}

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:0.1.7-SNAPSHOT")
    }
    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:0.1.7-SNAPSHOT")
      }
    }
    
    apply(plugin = "com.coverity.ondemand")
  • Applying plugins to all subprojects .