Search Gradle plugins

Version 0.1.4

Created 02 August 2021.

Continuous Integration of app scanning using Guardsquare AppSweep.

Using the plugins DSL:

plugins {
  id("com.guardsquare.appsweep") version "0.1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.guardsquare:appsweep-gradle:0.1.4")
  }
}

apply(plugin = "com.guardsquare.appsweep")

Using the plugins DSL:

plugins {
  id "com.guardsquare.appsweep" version "0.1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.guardsquare:appsweep-gradle:0.1.4"
  }
}

apply plugin: "com.guardsquare.appsweep"

Learn how to apply plugins to subprojects