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.9 (latest)
1.5.9
Created 07 June 2024.
Continuous Integration of app scanning using Guardsquare AppSweep.
Using the plugins DSL:
plugins {
id("com.guardsquare.appsweep") version "1.5.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.guardsquare:appsweep-gradle:1.5.9")
}
}
apply(plugin = "com.guardsquare.appsweep")
Using the plugins DSL:
plugins {
id "com.guardsquare.appsweep" version "1.5.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.guardsquare:appsweep-gradle:1.5.9"
}
}
apply plugin: "com.guardsquare.appsweep"