搜索Gradle插件

版本 1.5.9 (最新)

1.5.9

创建日期 2024年6月7日。

使用Guardsquare AppSweep进行应用扫描的持续集成。

使用插件DSL

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

使用旧版插件应用

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

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

使用插件DSL

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

使用旧版插件应用

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

apply plugin: "com.guardsquare.appsweep"

学习如何将插件应用于子项目