io.github.flank.gradle.simple-flank
Owner: Cristian Garcia
simple-flank is a new gradle plugin with a clear focus: make the setup as simple as possible.
https://github.com/Flank/simple-flank
Sources: https://github.com/Flank/simple-flank
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.
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"