Search Gradle plugins

Version 0.4.0 (latest)

Created 12 May 2023.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects