tools.forma.includer
Owner: Stepan Goncharov
Save yourself from writing and supporting a lot of boilerplate code
Sources: https://github.com/formatools/forma.git
Version 0.2.0 (latest)
0.2.0
Created 08 July 2023.
Save yourself from writing and supporting a lot of boilerplate code
Using the plugins DSL:
plugins {
id("tools.forma.includer") version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("tools.forma:plugin:0.2.0")
}
}
apply(plugin = "tools.forma.includer")
Using the plugins DSL:
plugins {
id "tools.forma.includer" version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "tools.forma:plugin:0.2.0"
}
}
apply plugin: "tools.forma.includer"