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.10 (latest)
Created 01 August 2024.
Generates an IRX file for your Java projects and submits it to the HCL AppScan on Cloud service for analysis.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.hcl.security.appscan") version "1.0.10"
}
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.hcl.security.appscan:com.hcl.security.appscan.gradle.plugin:1.0.10") }
It can then be applied in the precompiled script plugin:plugins { id("com.hcl.security.appscan") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.hcl.security.appscan:com.hcl.security.appscan.gradle.plugin:1.0.10") } } apply(plugin = "com.hcl.security.appscan")
- Applying plugins to all subprojects .