Search Gradle plugins

** Discontinued ** This plugin is discontinued and should not be used. You will not be able to scan an app anymore with this plugin, and need to switch to the CLI for integration. 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.0.0

Created 30 December 2021.

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.0.0"
}

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.0.0")
    }
    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.0.0")
      }
    }
    
    apply(plugin = "com.guardsquare.appsweep")
  • Applying plugins to all subprojects .