搜索Gradle插件

版本 0.4.0 (最新)

0.4.0

创建于 2023年5月12日。

simple-flank 是一个专注于简化设置的Gradle插件。

使用 plugins DSL

plugins {
  id("io.github.flank.gradle.simple-flank") version "0.4.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.flank.gradle:simple-flank:0.4.0")
  }
}

apply(plugin = "io.github.flank.gradle.simple-flank")

使用 plugins DSL

plugins {
  id "io.github.flank.gradle.simple-flank" version "0.4.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.flank.gradle:simple-flank:0.4.0"
  }
}

apply plugin: "io.github.flank.gradle.simple-flank"

了解如何将插件应用到子项目中