com.guardsquare.appsweep
Owner: Guardsquare
Continuous Integration of app scanning using Guardsquare AppSweep.
https://guardsquare.com/appsweep-mobile-application-security-testing
Sources: https://github.com/guardsquare/appsweep-gradle
Version 1.5.1
Created 17 July 2023.
Continuous Integration of app scanning using Guardsquare AppSweep.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.guardsquare.appsweep") version "1.5.1"
}
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.guardsquare.appsweep:com.guardsquare.appsweep.gradle.plugin:1.5.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.guardsquare.appsweep") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.guardsquare.appsweep:com.guardsquare.appsweep.gradle.plugin:1.5.1") } } apply(plugin = "com.guardsquare.appsweep")
- Applying plugins to all subprojects .