Search Gradle plugins

com.contrastsecurity.contrastplugin

Gradle plugin for Contrast Security, enables the installation of the Contrast Java Agent, connection to TeamServer, and verifying applications against new vulnerabilities

https://contrastsecurity.com

Sources: http://github.com/Contrast-Security-OSS/contrast-gradle-plugin

Version 2.0.0 (latest)

Created 20 August 2018.

Gradle plugin for Contrast Security, enables the installation of the Contrast Java Agent, connection to TeamServer, and verifying applications for new vulnerabilities.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.contrastsecurity.contrastplugin") version "2.0.0"
}

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