搜索Gradle插件

com.contrastsecurity.contrastplugin

所有者: Johnathan Gilday

Contrast Security的Gradle插件,使安装Contrast Java Agent、连接TeamServer以及验证应用程序对抗新漏洞成为可能。

https://contrastsecurity.com

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

版本 2.0.0 (最新版本)

2.0.0

创建于 2018年8月20日。

Contrast Security的Gradle插件,使安装Contrast Java Agent、连接TeamServer以及验证应用程序是否具有新漏洞。

使用 插件DSL

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

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.contrastsecurity:ContrastGradlePlugin:2.0.0")
  }
}

apply(plugin = "com.contrastsecurity.contrastplugin")

使用 插件DSL

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

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.contrastsecurity:ContrastGradlePlugin:2.0.0"
  }
}

apply plugin: "com.contrastsecurity.contrastplugin"

了解如何将插件应用到子项目中