com.hcl.security.appscan
Owner: Matt Murphy
Generates an IRX file for your Java projects and submits it to the HCL AppScan on Cloud service for analysis.
https://help.hcltechsw.com/appscan/ASoC/src_irx_gen_gradle.html
Sources: https://github.com/hclproducts/application-security-gradle-plugin
Version 1.0.0
1.0.0
Created 17 October 2019.
Generates an IRX file for your Java projects and submits it to the HCL AppScan on Cloud service for analysis.
Using the plugins DSL:
plugins {
id("com.hcl.security.appscan") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.hcl.security:application-security-gradle-plugin:1.0.0")
}
}
apply(plugin = "com.hcl.security.appscan")
Using the plugins DSL:
plugins {
id "com.hcl.security.appscan" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.hcl.security:application-security-gradle-plugin:1.0.0"
}
}
apply plugin: "com.hcl.security.appscan"