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.6-SNAPSHOT

Created 22 May 2015.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.coverity:ondemand-gradle-plugin:0.1.6-SNAPSHOT")
  }
}

apply(plugin = "com.coverity.ondemand")

Using the plugins DSL:

plugins {
  id "com.coverity.ondemand" version "0.1.6-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.coverity:ondemand-gradle-plugin:0.1.6-SNAPSHOT"
  }
}

apply plugin: "com.coverity.ondemand"

Learn how to apply plugins to subprojects