Search Gradle plugins

Version 0.4.0 (latest)

0.4.0

Created 12 May 2023.

simple-flank is a new gradle plugin with a clear focus: make the setup as simple as possible.

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.flank.gradle:simple-flank:0.4.0")
      }
    }
    
    apply(plugin = "io.github.flank.gradle.simple-flank")
  • Applying plugins to all subprojects .