Search Gradle plugins

Version 0.2.0

Created 11 May 2022.

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.2.0"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects